Files
harmony/build/check.sh
Jean-Gabriel Gill-Couture ab78143a45
All checks were successful
Run Check Script / check (pull_request) Successful in 1m52s
fix(ci): update submodules in ci doing a shallow clone to save some space and download time
2026-04-09 16:42:04 -04:00

14 lines
329 B
Bash
Executable File

#!/bin/sh
set -e
cd "$(dirname "$0")/.."
# Ensure vendor submodules are present (needed by opnsense-codegen tests)
git submodule update --init --depth 1 opnsense-codegen/vendor/core opnsense-codegen/vendor/plugins
rustc --version
cargo check --all-targets --all-features --keep-going
cargo fmt --check
cargo clippy
cargo test