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.
runner.os
1 parent c304962 commit ca7057eCopy full SHA for ca7057e
.github/workflows/cmake.yml
@@ -34,15 +34,15 @@ jobs:
34
build/libutf8proc.*
35
build/Debug/utf8proc.*
36
- name: Test Consuming (Windows)
37
- if: ${{ matrix.os == 'windows-latest' }}
+ if: runner.os = 'Windows'
38
run: |
39
cmake --install build --prefix tmp/install --config Debug
40
cmake -S test/app -B test/app/build -DCMAKE_INSTALL_PREFIX=tmp/install
41
cmake --build test/app/build
42
$Env:PATH = "$PWD\tmp\install\bin;$Env:PATH"
43
test/app/build/Debug/app.exe
44
- name: Test Consuming (Unix)
45
- if: ${{ matrix.os != 'windows-latest' }}
+ if: runner.os != 'Windows'
46
47
cmake --install build --prefix tmp/install
48
0 commit comments