Files
atlantis/scripts/build.sh
Anubhav Mishra 7f8f85a6a7 Detail view (#47)
* Adding the ability to get lock data and show it using the detail view in the ui for boltdb

* adding modal style

* Adding new modal based discard ui

* Adding detail view and get lock funtionality with unlocking with the UI

* lots of clean up after review

* using jquery most places now

* missed in merge

* this should cause a build failure

* moving e2e test as part of the test override step so they run if unit tests fail

* fixing boltdb tests

* turns out you can't fail fast in circleci

* don't compare locks
2017-06-25 15:24:07 -07:00

23 lines
398 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
run_unit_test() {
echo "Running unit tests: 'make test'"
make test
}
# Run unit tests
run_unit_test
# Get deps
echo "Running 'make deps'"
make deps
# Build packages to make sure they can be compiled
echo "Running 'make build'"
make build-service
# TODO: add parallel builds for every make target that has anything to do with testing.