Files
atlantis/scripts/e2e.sh
Anubhav Mishra 6b55b086cd Adding docker image and release scripts (#123)
* 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
2017-08-16 13:29:51 -07:00

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