diff --git a/tools/dashboard/dashboard.conf b/tools/dashboard/dashboard.conf index d67d7ffdc0..a369aa2b60 100644 --- a/tools/dashboard/dashboard.conf +++ b/tools/dashboard/dashboard.conf @@ -150,12 +150,6 @@ name: Minimal arch-file (sdbg) host: GCP report_url: https://storage.googleapis.com/cp2k-ci/dashboard_minimal_report.txt -[farming] -sortkey: 582 -name: Farming -host: GCP -report_url: https://storage.googleapis.com/cp2k-ci/dashboard_farming_report.txt - [coverage-pdbg] sortkey: 583 name: Coverage (pdbg) diff --git a/tools/docker/Dockerfile.test_farming b/tools/docker/Dockerfile.test_farming deleted file mode 100644 index 0f3bc55094..0000000000 --- a/tools/docker/Dockerfile.test_farming +++ /dev/null @@ -1,17 +0,0 @@ -ARG TOOLCHAIN=cp2k/toolchain:latest -FROM ${TOOLCHAIN} - -# author: Ole Schuett - -WORKDIR /workspace - -COPY ./scripts/install_basics.sh . -RUN ./install_basics.sh - -COPY ./scripts/install_regtest.sh . -RUN ./install_regtest.sh local psmp - -COPY ./scripts/ci_entrypoint.sh ./scripts/test_farming.sh ./ -CMD ["./ci_entrypoint.sh", "./test_farming.sh"] - -#EOF diff --git a/tools/docker/scripts/test_farming.sh b/tools/docker/scripts/test_farming.sh deleted file mode 100755 index 8c07a49163..0000000000 --- a/tools/docker/scripts/test_farming.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -e - -# author: Ole Schuett - -# shellcheck disable=SC1091 -source /opt/cp2k-toolchain/install/setup - -echo -e "\n========== Running Regtests ==========" -cd /workspace/cp2k -make VERSION=psmp test TESTOPTS="-farming -ompthreads 1 -skipunittest -skipdir TMC/regtest_ana_on_the_fly -skipdir TMC/regtest_ana_post_proc -skipdir TMC/regtest -skipdir LIBTEST/libvori -skipdir LIBTEST/libbqb -skipdir SIRIUS/regtest-1 ${TESTOPTS}" - -#EOF