Skip to content

Commit df755a5

Browse files
committed
Update build.yaml
1 parent a0fa13c commit df755a5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ jobs:
1919
- os: ubuntu-latest
2020
build_command: make build ARCH=x64-modern COMP=gcc OS=linux
2121
- os: windows-latest
22-
build_command: make build ARCH=x64 COMP=gcc OS=windows
22+
build_command: |-
23+
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
24+
nmake -fnmakefile vc-w64-modern
2325
- os: macos-latest
24-
build_command: make build ARCH=arm COMP=gcc OS=osx
26+
build_command: make build ARCH=armv8.5-a COMP=clang OS=osx
2527

2628
steps:
2729
- uses: actions/checkout@v4
@@ -31,6 +33,7 @@ jobs:
3133
mkdir -p bin
3234
cd src
3335
${{ matrix.build_command }}
36+
shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}
3437

3538
- uses: actions/upload-artifact@v4
3639
with:

0 commit comments

Comments
 (0)