diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8917a403..e7078dca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: uses: ClementTsang/skip-duplicate-actions@41b0a75f656d455934ffa6a46b779d8d996ac47c with: skip_after_successful_duplicate: "true" - paths: '[".cargo/**", ".github/actions/**", ".github/ci/**", ".github/workflows/ci.yml", "sample_configs/**", "src/**", "tests/**", "build.rs", "Cargo.lock", "Cargo.toml", "clippy.toml", "rustfmt.toml", "Cross.toml"]' + paths: '[".cargo/**", ".github/actions/**", ".github/ci/**", ".github/workflows/ci.yml", "sample_configs/**", "scripts/ci/**", "src/**", "tests/**", "build.rs", "Cargo.lock", "Cargo.toml", "clippy.toml", "rustfmt.toml", "Cross.toml"]' do_not_skip: '["workflow_dispatch", "push"]' # Runs rustfmt + tests + clippy on the main supported platforms. diff --git a/scripts/ci/bsd_tests.sh b/scripts/ci/bsd_tests.sh index eb726e72..b1608fa4 100644 --- a/scripts/ci/bsd_tests.sh +++ b/scripts/ci/bsd_tests.sh @@ -6,7 +6,7 @@ set -eu BSD_TARGET="${1:-}" SCRIPT_DIR=$(cd -- "$(dirname -- "$0")" > /dev/null && pwd) -RUST_VERSION=$(cat "$SCRIPT_DIR/.github/ci/rust_version.txt") +RUST_VERSION=$(cat "$SCRIPT_DIR/../../.github/ci/rust_version.txt") if [ -z "$BSD_TARGET" ]; then echo "Error: BSD target must be specified."