We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4558828 commit 9ed79aeCopy full SHA for 9ed79ae
1 file changed
.github/workflows/build.yml
@@ -18,6 +18,13 @@ jobs:
18
fail-fast: false
19
matrix:
20
os: [ubuntu-latest, windows-latest, macos-latest]
21
+ include:
22
+ - os: ubuntu-latest
23
+ bin_path: build/proxpl
24
+ - os: macos-latest
25
26
+ - os: windows-latest
27
+ bin_path: build/Release/proxpl.exe
28
29
steps:
30
- name: Checkout source
@@ -132,14 +139,11 @@ jobs:
132
139
-DCMAKE_PREFIX_PATH="$env:LLVM_ROOT"
133
140
134
141
- name: Build
135
-
136
142
shell: bash
137
- run: cmake --build build --verbose
143
+ run: cmake --build build --config Release --verbose
138
144
145
- name: Upload Artifact
146
uses: actions/upload-artifact@v4
147
with:
148
name: ProXPL-${{ matrix.os }}
- path: |
- build/proxpl
- build/Release/proxpl.exe
149
+ path: ${{ matrix.bin_path }}
0 commit comments