We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f787d58 commit da39f6dCopy full SHA for da39f6d
1 file changed
.github/workflows/ci.yml
@@ -418,12 +418,15 @@ jobs:
418
- name: prepare vcpkg port
419
run: |
420
myci-vcpkg-prepare.sh --git-ref ${{ github.sha }}
421
- - name: test vcpkg port
+ - name: test vcpkg port - build
422
423
cd build/vcpkg/test
424
cmake .
425
- make
426
- ./test
+ cmake --build . --parallel
+ - name: test vcpkg port - test
427
+ run: |
428
+ cd build/vcpkg/test
429
+ cmake --build . --target test
430
- name: upload vcpkg logs to artifacts
431
if: always() # even if previous steps fail, this one needs to be run
432
uses: actions/upload-artifact@v4
0 commit comments