ci: do not run test for vrc-get-gui

This commit is contained in:
anatawa12 2024-10-28 22:07:49 +09:00
commit 41eb1a2cce
No known key found for this signature in database
GPG key ID: 9CA909848B8E4EA6

View file

@ -110,10 +110,10 @@ jobs:
target/${{ matrix.triple }}/debug/vrc-get*
target/${{ matrix.triple }}/debug/libvrc-get*
- name: Build tests
run: cargo build --tests --target ${{ matrix.triple }} --workspace --exclude vrc-get-litedb
run: cargo build --tests --target ${{ matrix.triple }} -p vrc-get -p vrc-get-vpm
- name: Run tests
if: ${{ matrix.run-test }}
run: cargo test --verbose --target ${{ matrix.triple }} --workspace --exclude vrc-get-litedb
run: cargo test --verbose --target ${{ matrix.triple }} -p vrc-get -p vrc-get-vpm
- name: Check binary is statically linked
shell: bash
if: ${{ matrix.static-linked }}