diff --git a/testing/web-platform/tests/tools/ci/before_install.sh b/testing/web-platform/tests/tools/ci/before_install.sh deleted file mode 100755 index cde1879211b3..000000000000 --- a/testing/web-platform/tests/tools/ci/before_install.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -set -e - -export GITHUB_PULL_REQUEST=$TRAVIS_PULL_REQUEST -export GITHUB_BRANCH=$TRAVIS_BRANCH - -if [[ $RUN_JOB -eq 1 ]] || ./wpt test-jobs --includes $JOB; then - export RUN_JOB=1 - git submodule update --init --recursive 1>&2 - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start 1>&2 - # For uploading the manifest - export WPT_MANIFEST_FILE=$HOME/meta/MANIFEST-$(git rev-parse HEAD).json -else - export RUN_JOB=0 -fi diff --git a/testing/web-platform/tests/tools/ci/ci_manifest.sh b/testing/web-platform/tests/tools/ci/ci_manifest.sh deleted file mode 100755 index 7d0d5ca04189..000000000000 --- a/testing/web-platform/tests/tools/ci/ci_manifest.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/bash -set -ex - -SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P) -WPT_ROOT=$SCRIPT_DIR/../.. -cd $WPT_ROOT - -mkdir -p ~/meta - -python tools/ci/tag_master.py -./wpt manifest -p ~/meta/MANIFEST.json -cp ~/meta/MANIFEST.json $WPT_MANIFEST_FILE -# Force overwrite of any existing file -gzip -f $WPT_MANIFEST_FILE diff --git a/testing/web-platform/tests/tools/ci/install.sh b/testing/web-platform/tests/tools/ci/install.sh deleted file mode 100755 index f91a24c88e07..000000000000 --- a/testing/web-platform/tests/tools/ci/install.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -set -ex - -SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P) -WPT_ROOT=$SCRIPT_DIR/../.. -cd $WPT_ROOT - -if [[ $RUN_JOB -eq 1 ]]; then - pip install -U setuptools - pip install -U requests -fi diff --git a/testing/web-platform/tests/tools/ci/run.sh b/testing/web-platform/tests/tools/ci/run.sh deleted file mode 100755 index 5af38d0b56c1..000000000000 --- a/testing/web-platform/tests/tools/ci/run.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -set -ex - -SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P) -WPT_ROOT=$SCRIPT_DIR/../.. -cd $WPT_ROOT - -if [[ $RUN_JOB -eq 1 ]]; then - $SCRIPT -fi