ci: Use cargo nextest as the test runner and export junit reports

Close #519

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1572>
This commit is contained in:
Jordan Petridis 2024-08-20 20:48:04 +03:00 committed by GStreamer Marge Bot
parent 1deddbc6d3
commit 9e89c93ad5
8 changed files with 99 additions and 6 deletions

6
.config/nextest.toml Normal file
View file

@ -0,0 +1,6 @@
[profile.ci]
failure-output = "immediate-final"
fail-fast = false
[profile.ci.junit]
path = "junit.xml"

View file

@ -225,6 +225,11 @@ update-nightly:
stage: "test" stage: "test"
script: script:
- *cargo_test - *cargo_test
artifacts:
paths:
- 'junit_reports'
reports:
junit: "junit_reports/**/junit.xml"
test msrv: test msrv:
extends: extends:
@ -290,6 +295,11 @@ test nightly all-features:
stage: "test" stage: "test"
script: script:
- ./ci/run-sys-cargo-test.sh - ./ci/run-sys-cargo-test.sh
artifacts:
paths:
- 'junit_reports'
reports:
junit: "junit_reports/**/junit.xml"
test stable sys: test stable sys:
extends: extends:
@ -437,7 +447,9 @@ coverage:
artifacts: artifacts:
paths: paths:
- 'coverage' - 'coverage'
- 'junit_reports'
reports: reports:
junit: "junit_reports/**/junit.xml"
coverage_report: coverage_report:
coverage_format: cobertura coverage_format: cobertura
path: "coverage/cobertura.xml" path: "coverage/cobertura.xml"
@ -576,6 +588,11 @@ windows rust docker msrv:
- 'windows' - 'windows'
- '2022' - '2022'
- "gstreamer-windows" - "gstreamer-windows"
artifacts:
paths:
- 'junit_reports'
reports:
junit: "junit_reports/**/*.xml"
script: script:
# Skip -sys tests as they don't work # Skip -sys tests as they don't work
# https://github.com/gtk-rs/gtk3-rs/issues/54 # https://github.com/gtk-rs/gtk3-rs/issues/54

View file

@ -1,6 +1,6 @@
variables: variables:
GST_RS_IMG_TAG: "2024-09-12.1" GST_RS_IMG_TAG: "2024-10-02.0"
GST_RS_IMG_WINDOWS_TAG: "2024-09-12.1" GST_RS_IMG_WINDOWS_TAG: "2024-10-02.0"
GST_RS_STABLE: "1.81.0" GST_RS_STABLE: "1.81.0"
GST_RS_MSRV: "1.71.1" GST_RS_MSRV: "1.71.1"
# The branch we use to build GStreamer from in the docker images # The branch we use to build GStreamer from in the docker images

View file

@ -45,6 +45,13 @@ if [ "$RUST_IMAGE_FULL" = "1" ]; then
fi fi
fi fi
# Multiple dependencies of cargo-nextest require 1.74/1.75 nowadays
if [ "$RUST_VERSION" = "1.71.1" ]; then
cargo install --locked cargo-nextest@0.9.67
else
cargo install --locked cargo-nextest
fi
if [ "$RUST_VERSION" = "1.71.1" ]; then if [ "$RUST_VERSION" = "1.71.1" ]; then
cargo install --locked cargo-c --version 0.9.26+cargo-0.74 cargo install --locked cargo-c --version 0.9.26+cargo-0.74
else else

View file

@ -8,6 +8,8 @@ cargo --version
cpus=$(nproc || sysctl -n hw.ncpu) cpus=$(nproc || sysctl -n hw.ncpu)
CARGO_FLAGS="-j${FDO_CI_CONCURRENT:-$cpus}" CARGO_FLAGS="-j${FDO_CI_CONCURRENT:-$cpus}"
parent="${CI_PROJECT_DIR:-$(pwd)}"
for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do
if [ -e "$crate/Cargo.toml" ]; then if [ -e "$crate/Cargo.toml" ]; then
if [ -n "$ALL_FEATURES" ]; then if [ -n "$ALL_FEATURES" ]; then
@ -19,7 +21,11 @@ for crate in gstreamer* gstreamer-gl/{egl,wayland,x11}; do
echo "Building and testing $crate with $FEATURES" echo "Building and testing $crate with $FEATURES"
cargo build $CARGO_FLAGS --locked --color=always --manifest-path "$crate/Cargo.toml" $FEATURES cargo build $CARGO_FLAGS --locked --color=always --manifest-path "$crate/Cargo.toml" $FEATURES
RUST_BACKTRACE=1 G_DEBUG=fatal_warnings cargo test $CARGO_FLAGS --color=always --manifest-path "$crate/Cargo.toml" $FEATURES RUST_BACKTRACE=1 G_DEBUG=fatal_warnings cargo nextest run --profile=ci $CARGO_FLAGS --color=always --manifest-path "$crate/Cargo.toml" $FEATURES
new_report_dir="$parent/junit_reports/$crate"
mkdir -p "$new_report_dir"
mv "$parent/target/nextest/ci/junit.xml" "$new_report_dir/junit.xml"
fi fi
done done

View file

@ -8,6 +8,8 @@ cargo --version
cpus=$(nproc || sysctl -n hw.ncpu) cpus=$(nproc || sysctl -n hw.ncpu)
CARGO_FLAGS="-j${FDO_CI_CONCURRENT:-$cpus}" CARGO_FLAGS="-j${FDO_CI_CONCURRENT:-$cpus}"
parent="${CI_PROJECT_DIR:-$(pwd)}"
for crate in gstreamer*/sys gstreamer-gl/*/sys; do for crate in gstreamer*/sys gstreamer-gl/*/sys; do
if [ -e "$crate/Cargo.toml" ]; then if [ -e "$crate/Cargo.toml" ]; then
echo "Building $crate with --all-features" echo "Building $crate with --all-features"
@ -42,5 +44,9 @@ for crate in gstreamer/sys \
gstreamer-video/sys \ gstreamer-video/sys \
gstreamer-webrtc/sys; do gstreamer-webrtc/sys; do
echo "Testing $crate with --all-features)" echo "Testing $crate with --all-features)"
RUST_BACKTRACE=1 cargo test $CARGO_FLAGS --locked --color=always --manifest-path $crate/Cargo.toml --all-features RUST_BACKTRACE=1 cargo nextest run --profile ci $CARGO_FLAGS --locked --color=always --manifest-path $crate/Cargo.toml --all-features
new_report_dir="$parent/junit_reports/$crate"
mkdir -p "$new_report_dir"
mv "$parent/target/nextest/ci/junit.xml" "$new_report_dir/junit.xml"
done done

View file

@ -42,6 +42,43 @@
"--all-features" "--all-features"
) )
function Move-Junit {
param (
$Features
)
if ($env:CI_PROJECT_DIR) {
$parent = $env:CI_PROJECT_DIR
} else {
$parent = $PWD.path
}
Write-Host "Parent directory: $parent"
$new_report_dir = "$parent/junit_reports/$crate/"
If(!(test-path -PathType container $new_report_dir))
{
New-Item -Path "$new_report_dir" -ItemType "directory"
if (!$?) {
Write-Host "Failed to create directory: $new_report_dir"
Exit 1
}
}
if ($Features -eq "--all-features") {
$suffix = "all"
} elseif ($Features -eq "--no-default-features") {
$suffix = "no-default"
} else {
$suffix = "default"
}
Move-Item "$parent/target/nextest/ci/junit.xml" "$new_report_dir/junit-$suffix.xml"
if (!$?) {
Write-Host "Failed to move junit file"
Exit 1
}
}
foreach($features in $features_matrix) { foreach($features in $features_matrix) {
foreach($crate in $crates) foreach($crate in $crates)
{ {
@ -77,11 +114,12 @@ foreach($features in $features_matrix) {
$env:G_DEBUG="fatal_warnings" $env:G_DEBUG="fatal_warnings"
$env:RUST_BACKTRACE="1" $env:RUST_BACKTRACE="1"
cargo test --no-fail-fast --color=always --manifest-path $crate/Cargo.toml $env:LocalFeatures cargo nextest run --profile=ci --no-fail-fast --color=always --manifest-path $crate/Cargo.toml $env:LocalFeatures
if (!$?) { if (!$?) {
Write-Host "Tests failed to for crate: $crate" Write-Host "Tests failed to for crate: $crate"
Exit 1 Exit 1
} }
Move-Junit -Features $features
} }
} }

View file

@ -15,4 +15,17 @@ if (!$?) {
Exit 1 Exit 1
} }
# Multiple dependencies of cargo-nextest require 1.74/1.75 nowadays
if ("$env:RUST_VERSION" -eq "1.71.1") {
cargo install --locked cargo-nextest@0.9.67
} else {
cargo install --locked cargo-nextest
}
if (!$?) {
Write-Host "Failed to install cargo-nextest"
Exit 1
}
cargo-cbuild --version cargo-cbuild --version
cargo nextest --version