mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 21:08:21 +00:00
25 lines
384 B
Bash
Executable File
25 lines
384 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
# Download dependencies
|
|
echo "Running 'make deps'"
|
|
make deps
|
|
|
|
# Test dependencies
|
|
echo "Running 'make deps-test'"
|
|
make deps-test
|
|
|
|
# Run tests
|
|
echo "Running 'make test'"
|
|
make test
|
|
|
|
# Build packages to make sure they can be compiled
|
|
echo "Running 'make build'"
|
|
make build
|
|
|
|
# Run e2e tests
|
|
echo "Running e2e test: 'make run'"
|
|
make run
|