From 2304a20a868e19d91d64e17354ec31952e8ad145 Mon Sep 17 00:00:00 2001 From: Alaric Senat Date: Wed, 19 Aug 2026 14:31:11 +0200 Subject: [PATCH] ci: run the test suite instead of a bare build `cargo build --all` never built the test or example targets. `cargo test --workspace --all-targets` compiles everything and will run future tests. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c87f14d..86f3c2b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ variables: VLC_UBUNTU_IMAGE: registry.videolan.org/vlc-rs-libvlc-stable-ubuntu:20260728042128 CARGO_TERM_COLOR: always -vlc-rs-build: +build-linux: tags: - docker - amd64 @@ -13,4 +13,4 @@ vlc-rs-build: image: $VLC_UBUNTU_IMAGE interruptible: true script: - - cargo build --all + - cargo test --workspace --all-targets