Skip to content

Commit 6c5475d

Browse files
committed
ci: fix
1 parent 5a1c3f8 commit 6c5475d

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,11 +574,14 @@ jobs:
574574
- name: prepare vcpkg port
575575
run: |
576576
myci-vcpkg-prepare.sh --vcpkg-dir build/vcpkg --git-ref ${{ github.sha }}
577-
- name: test vcpkg port
577+
- name: test vcpkg port - build
578578
run: |
579579
cd build/vcpkg/test
580580
cmake .
581581
cmake --build . --parallel
582+
- name: test vcpkg port - test
583+
run: |
584+
cd build/vcpkg/test
582585
cmake --build . --target test
583586
- name: upload vcpkg logs to artifacts
584587
if: always() # even if previous steps fail, this one needs to be run
@@ -607,7 +610,7 @@ jobs:
607610
arch:
608611
- Win32
609612
- x64
610-
name: vcpkg - MSVC - ${{ matrix.arch }}|${{ matrix.config }}
613+
name: vcpkg - windows - ${{ matrix.arch }}|${{ matrix.config }}
611614
steps:
612615
- name: git clone
613616
uses: actions/checkout@v4
@@ -642,7 +645,7 @@ jobs:
642645
if: always() # even if previous steps fail, this one needs to be run
643646
uses: actions/upload-artifact@v4
644647
with:
645-
name: vcpkg_windows_logs
648+
name: vcpkg_windows_${{ matrix.arch }}_${{ matrix.config }}_logs
646649
path: |
647650
vcpkg-installation/buildtrees/${{ env.PACKAGE_NAME }}/
648651
build/vcpkg/**/*.log

0 commit comments

Comments
 (0)