File tree Expand file tree Collapse file tree 4 files changed +2
-18
lines changed Expand file tree Collapse file tree 4 files changed +2
-18
lines changed Original file line number Diff line number Diff line change 20
20
21
21
- name : Build binaries
22
22
run : bash tool/build_linux.sh x64
23
-
24
- - name : Upload binary
25
- uses : svenstaro/upload-release-action@v2
26
- with :
27
- repo_token : ${{ secrets.GITHUB_TOKEN }}
28
- overwrite : true
29
- file : libpowersync_x64.so
30
- asset_name : libpowersync_x64.so
31
- tag : ${{ github.ref_name }}
Original file line number Diff line number Diff line change 14
14
15
15
- name : Build binary
16
16
run : bash tool/build_windows.sh x64
17
-
18
- - name : Upload binary x64
19
- uses : svenstaro/upload-release-action@v2
20
- with :
21
- repo_token : ${{ secrets.GITHUB_TOKEN }}
22
- overwrite : true
23
- file : powersync_x64.dll
24
- asset_name : powersync_x64.dll
25
- tag : ${{ github.ref_name }}
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ if [ "$1" = "x64" ]; then
3
3
cargo build -p powersync_loadable --release
4
4
mv " target/release/libpowersync.so" " libpowersync_x64.so"
5
5
else
6
+ # Note: aarch64-unknown-linux-gnu has not been tested.
6
7
rustup target add aarch64-unknown-linux-gnu
7
8
cargo build -p powersync_loadable --release
8
9
mv " target/release/libpowersync.so" " libpowersync_aarch64.so"
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ if [ "$1" = "x64" ]; then
3
3
cargo build -p powersync_loadable --release
4
4
mv " target/release/powersync.dll" " powersync_x64.dll"
5
5
else
6
+ # Note: aarch64-pc-windows-msvc has not been tested.
6
7
rustup target add aarch64-pc-windows-msvc
7
8
cargo build -p powersync_loadable --release
8
9
mv " target/release/powersync.dll" " powersync_aarch64.dll"
You can’t perform that action at this time.
0 commit comments