mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 20:47:55 +00:00
* Adding e2e tests back and upgrading terraform version 0.9.11 * Fixing the binary name for e2e tests * revert binary name change * missed indentation for makefile * use owner name for branch head for pull request creation
21 lines
316 B
Bash
Executable File
21 lines
316 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
# Download dependencies
|
|
echo "Running 'make deps'"
|
|
make deps
|
|
|
|
# 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
|