mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 12:48:18 +00:00
* Adding docker image and release scripts * Using circleci version 2 * now building dumb-init and gosu from source * trying to fix e2e tests * fixing working directory for circleci version 2 * start atlantis server and ngrok in the background * Adding terraform to path and removing old decryption method for circleci * adding terraform binary to the correct path * ATLANTIS_URL is now being exported * using circleci version 2 syntax to export variable * using circleci version 2 syntax to export variable * ngrok isnt working now * Updating CHANGELOG * Fixes after review and updated README.md
23 lines
325 B
Bash
Executable File
23 lines
325 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
cd e2e/
|
|
|
|
# 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
|