From 706294dc80a026c3a8d82c11394271683b110178 Mon Sep 17 00:00:00 2001 From: meyric Date: Tue, 12 Nov 2024 14:46:32 +0000 Subject: [PATCH] Remove unused CI scripts Now that we have all the CI tasks in Github Actions these scripts are never used. --- script/ci/cibuild | 8 -------- script/ci/test | 12 ------------ 2 files changed, 20 deletions(-) delete mode 100755 script/ci/cibuild delete mode 100755 script/ci/test 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 "$@"