2017-06-28 13:57:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-01-27 14:54:29 +00:00
|
|
|
export PATH=./scripts:$PATH
|
|
|
|
|
2017-06-28 13:57:58 +00:00
|
|
|
docker --version
|
|
|
|
docker-compose --version
|
2018-08-09 20:24:02 +00:00
|
|
|
echo "node `node -v`"
|
|
|
|
echo "npm `npm -v`"
|
2017-06-28 13:57:58 +00:00
|
|
|
|
2019-01-27 14:54:29 +00:00
|
|
|
# Build
|
|
|
|
authelia-scripts build
|
2017-06-28 13:57:58 +00:00
|
|
|
|
2019-02-24 09:03:38 +00:00
|
|
|
# Run unit tests
|
|
|
|
authelia-scripts unittest
|
|
|
|
|
2019-03-01 21:52:01 +00:00
|
|
|
# Build the docker image
|
|
|
|
authelia-scripts docker build
|
|
|
|
|
2019-02-23 22:27:34 +00:00
|
|
|
# Run integration tests
|
2019-03-02 15:19:08 +00:00
|
|
|
authelia-scripts suites test --headless
|
2019-02-23 22:27:34 +00:00
|
|
|
|
2017-06-28 13:57:58 +00:00
|
|
|
# Test npm deployment before actual deployment
|
2019-02-11 22:23:40 +00:00
|
|
|
# ./scripts/npm-deployment-test.sh
|