We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0fa13c commit df755a5Copy full SHA for df755a5
.github/workflows/build.yaml
@@ -19,9 +19,11 @@ jobs:
19
- os: ubuntu-latest
20
build_command: make build ARCH=x64-modern COMP=gcc OS=linux
21
- os: windows-latest
22
- build_command: make build ARCH=x64 COMP=gcc OS=windows
+ build_command: |-
23
+ call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
24
+ nmake -fnmakefile vc-w64-modern
25
- os: macos-latest
- build_command: make build ARCH=arm COMP=gcc OS=osx
26
+ build_command: make build ARCH=armv8.5-a COMP=clang OS=osx
27
28
steps:
29
- uses: actions/checkout@v4
@@ -31,6 +33,7 @@ jobs:
31
33
mkdir -p bin
32
34
cd src
35
${{ matrix.build_command }}
36
+ shell: ${{ matrix.os == 'windows-latest' && 'cmd' || 'bash' }}
37
38
- uses: actions/upload-artifact@v4
39
with:
0 commit comments