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 791b310 commit 871c96cCopy full SHA for 871c96c
1 file changed
.github/workflows/mainline-compile.yml
@@ -29,11 +29,11 @@ jobs:
29
- name: Install dependencies with Conan
30
run: |
31
if [ "${{ matrix.compiler }}" = "clang" ]; then
32
- export CC=clang
33
- export CXX=clang++
+ export CC=$(which clang)
+ export CXX=$(which clang++)
34
else
35
- export CC=gcc
36
- export CXX=g++
+ export CC=$(which gcc)
+ export CXX=$(which g++)
37
fi
38
sudo -u ci env CC=$CC CXX=$CXX conan profile detect
39
@@ -45,7 +45,7 @@ jobs:
45
sudo -u ci conan install . --build=missing
46
sudo -u ci cmake --preset conan-release
47
sudo -u ci cmake --build build/Release -j$(nproc)
48
- sudo -u ci cmake --build build/Release package
+ sudo -u ci cmake --build build/Release --target package
49
50
- name: Upload package tarball
51
uses: actions/upload-artifact@v4
0 commit comments