53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
 | 
						|
cd "$(dirname "$0")/.."
 | 
						|
 | 
						|
source ci/_
 | 
						|
source ci/rust-version.sh stable
 | 
						|
source ci/rust-version.sh nightly
 | 
						|
 | 
						|
export RUST_BACKTRACE=1
 | 
						|
export RUSTFLAGS="-D warnings"
 | 
						|
 | 
						|
# Look for failed mergify.io backports
 | 
						|
_ git show HEAD --check --oneline
 | 
						|
 | 
						|
if _ scripts/cargo-for-all-lock-files.sh +"$rust_nightly" check --locked --all-targets; then
 | 
						|
  true
 | 
						|
else
 | 
						|
  check_status=$?
 | 
						|
  echo "Some Cargo.lock is outdated; please update them as well"
 | 
						|
  echo "protip: you can use ./scripts/cargo-for-all-lock-files.sh update ..."
 | 
						|
  exit "$check_status"
 | 
						|
fi
 | 
						|
 | 
						|
_ cargo +"$rust_stable" fmt --all -- --check
 | 
						|
 | 
						|
_ cargo +"$rust_stable" clippy --version
 | 
						|
_ cargo +"$rust_stable" clippy --workspace -- --deny=warnings
 | 
						|
 | 
						|
_ cargo +"$rust_stable" audit --version
 | 
						|
_ scripts/cargo-for-all-lock-files.sh +"$rust_stable" audit --ignore RUSTSEC-2020-0002 --ignore RUSTSEC-2020-0008
 | 
						|
_ ci/nits.sh
 | 
						|
_ ci/order-crates-for-publishing.py
 | 
						|
_ docs/build.sh
 | 
						|
_ ci/check-ssh-keys.sh
 | 
						|
 | 
						|
{
 | 
						|
  cd programs/bpf
 | 
						|
  _ cargo +"$rust_stable" audit
 | 
						|
  for project in rust/*/ ; do
 | 
						|
    echo "+++ do_bpf_checks $project"
 | 
						|
    (
 | 
						|
      cd "$project"
 | 
						|
      _ cargo +"$rust_stable" fmt -- --check
 | 
						|
      _ cargo +"$rust_nightly" test
 | 
						|
      _ cargo +"$rust_nightly" clippy --version
 | 
						|
      _ cargo +"$rust_nightly" clippy -- --deny=warnings --allow=clippy::missing_safety_doc
 | 
						|
    )
 | 
						|
  done
 | 
						|
}
 | 
						|
 | 
						|
echo --- ok
 |