test
All checks were successful
Gentoo Utils / build-oci-image (push) Successful in 20s
Gentoo Utils / build (push) Successful in 28s
Gentoo Utils / check-format (push) Successful in 10s
Gentoo Utils / grep (push) Successful in 4s
Gentoo Utils / test (push) Successful in 29s
Gentoo Utils / docs (push) Successful in 23s
Gentoo Utils / fuzz (push) Successful in 1m12s

This commit is contained in:
2025-12-27 16:23:10 -06:00
parent f5ae082dd4
commit f79da93460

View File

@@ -132,9 +132,12 @@ jobs:
- name: test
run: |
[ -d build ] || meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized -Ddocs=enabled build
set -x
ls build
[[ -d build ]] || meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized -Ddocs=enabled build
meson compile -C build
ninja test -C build
set +x
fuzz:
runs-on: gentoo
@@ -170,7 +173,7 @@ jobs:
run: |
source ./portage/.venv/bin/activate
which emerge
[ -d build ] || meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized build
[[ -d build ]] || meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized build
meson compile atom_parser_fuzzer:alias -C build
timeout 10m ./scripts/atom_parser_fuzz.sh
continue-on-error: true
@@ -194,7 +197,7 @@ jobs:
- name: Check Formatting
run: |
[ -d build ] || meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized build
[[ -d build ]] || meson setup -Dfuzz=enabled -Dtests=enabled -Dbuildtype=debugoptimized build
meson format --check-only --recursive
ninja rustfmt -C build
@@ -217,8 +220,8 @@ jobs:
- name: Build Documentation
run: |
[ -d build ] || meson setup -Ddocs=enabled docs
ninja rustdoc -C docs
[[ -d build ]] || meson setup -Ddocs=enabled build
ninja rustdoc -C build
grep:
runs-on: gentoo