Skip to content

Commit da39f6d

Browse files
committed
vcpkg: run test target
1 parent f787d58 commit da39f6d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,12 +418,15 @@ jobs:
418418
- name: prepare vcpkg port
419419
run: |
420420
myci-vcpkg-prepare.sh --git-ref ${{ github.sha }}
421-
- name: test vcpkg port
421+
- name: test vcpkg port - build
422422
run: |
423423
cd build/vcpkg/test
424424
cmake .
425-
make
426-
./test
425+
cmake --build . --parallel
426+
- name: test vcpkg port - test
427+
run: |
428+
cd build/vcpkg/test
429+
cmake --build . --target test
427430
- name: upload vcpkg logs to artifacts
428431
if: always() # even if previous steps fail, this one needs to be run
429432
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)