We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b72aca commit 5b74a5eCopy full SHA for 5b74a5e
1 file changed
.github/workflows/cmake.yml
@@ -38,6 +38,11 @@ jobs:
38
run: find $RUNNER_WORKSPACE
39
shell: bash
40
41
+ - name: Install libcrypt-dev
42
+ if: matrix.os == 'ubuntu-latest'
43
+ run: sudo apt-get install libcrypt-dev
44
+ shell: bash
45
+
46
- name: Setup vcpkg
47
uses: lukka/run-vcpkg@v11
48
id: runvcpkg
@@ -53,7 +58,7 @@ jobs:
53
58
uses: lukka/run-cmake@v10
54
59
id: runcmake
55
60
with:
56
- cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt'
61
+ cmakeListsTxtPath: '@CMakeLists.txt'
57
62
configurePreset: 'ninja-multi-vcpkg'
63
buildPreset: 'ninja-multi-vcpkg'
64
- name: List $RUNNER_WORKSPACE after build
@@ -63,4 +68,4 @@ jobs:
68
uses: actions/upload-artifact@v4
69
65
70
name: build-${{ matrix.os }}-${{ github.workflow }}
66
- path: $RUNNER_WORKSPACE/build
71
+ path: builds
0 commit comments