diff --git a/script/ci/cibuild b/script/ci/cibuild deleted file mode 100755 index 36639123..00000000 --- a/script/ci/cibuild +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -# Setup environment for CI to run tests. This is primarily designed to run on -# the continuous integration server. - -set -e - -docker compose -f docker-compose.ci.yml -p app build diff --git a/script/ci/test b/script/ci/test deleted file mode 100755 index db27458c..00000000 --- a/script/ci/test +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -# Run the test suite for the application. This is primarily designed to run on -# CI with a clean build context. To run locally first remove any generic image -# by running `docker rmi app:latest` - -set -e - -docker compose -f docker-compose.ci.yml \ - -p app \ - run --rm test \ - script/all/test "$@"