We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08705ab commit 26e8174Copy full SHA for 26e8174
.github/workflows/windows.yml
@@ -1,7 +1,7 @@
1
on:
2
push:
3
pull_request:
4
-name: "linux"
+name: "windows"
5
jobs:
6
build_windows:
7
name: Building Windows
@@ -28,9 +28,15 @@ jobs:
28
shell: bash
29
run: choco install make
30
31
+ - name: Set Windows environment variables
32
+ shell: pwsh
33
+ run: |
34
+ echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV
35
+ echo "OPENSSL_SRC_PERL=C:/Strawberry/perl/bin/perl" >> $env:GITHUB_ENV
36
+
37
- name: Setup
38
run: |
- cargo build -p powersync_loadable --release
39
+ cargo build -p powersync_loadable --release --target x86_64-pc-windows-msvc -Zbuild-std -v
40
mv "target/release/libpowersync.dll" "libpowersync_x64.dll"
41
42
- name: Upload binary
0 commit comments