garage/build.sh

29 lines
797 B
Bash
Raw Normal View History

2023-03-14 15:35:47 +00:00
#!/bin/bash
2023-03-14 16:13:32 +00:00
set -euxo pipefail
2023-03-14 15:57:12 +00:00
echo "-- check --"
nix-shell --attr rust --run "cargo fmt -- --check"
echo "-- build --"
nix-build --no-build-output --attr clippy.amd64 --argstr git_version $COMMIT
echo "-- unit tests --"
2023-03-14 18:25:54 +00:00
export GARAGE_TEST_INTEGRATION_EXE=result-bin/bin/garage
2023-03-14 15:57:12 +00:00
nix-build --no-build-output --attr test.amd64
./result/bin/garage_db-*
./result/bin/garage_api-*
./result/bin/garage_model-*
./result/bin/garage_rpc-*
./result/bin/garage_table-*
./result/bin/garage_util-*
./result/bin/garage_web-*
./result/bin/garage-*
echo "-- integration tests --"
./result/bin/integration-*
echo "-- smoke tests --"
rm result
nix-build --no-build-output --attr clippy.amd64 --argstr git_version $COMMIT
nix-shell --attr integration --run ./script/test-smoke.sh || (cat /tmp/garage.log; false)