mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-29 17:08:23 +00:00
* 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
23 lines
398 B
Bash
Executable File
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.
|