Skip to content

Commit

Permalink
Remove unnecessary Travis files.
Browse files Browse the repository at this point in the history
Remove .travis/before-install-linux-{cpp,java,python2,python3}.sh, and
remove some lines from before-install-linux-{javascript,go}.sh.

These contained apt commands for configuring the Mono project's GPG key,
which is not used in any of these builds, and pointless apt-get update
calls.
  • Loading branch information
ewanmellor committed Jul 14, 2019
1 parent b627fff commit 115274e
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 29 deletions.
6 changes: 0 additions & 6 deletions .travis/before-install-linux-cpp.sh

This file was deleted.

2 changes: 0 additions & 2 deletions .travis/before-install-linux-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,5 @@

set -euo pipefail

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
sudo apt-get update -qq
eval "$(sudo gimme 1.7.3)"
( go version ; go env ) || true
6 changes: 0 additions & 6 deletions .travis/before-install-linux-java.sh

This file was deleted.

1 change: 0 additions & 1 deletion .travis/before-install-linux-javascript.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

set -euo pipefail

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
sudo apt-get update -qq
curl -sL https://deb.nodesource.com/setup_0.12 | sudo -E bash -
sudo apt-get install -qq nodejs
Expand Down
7 changes: 0 additions & 7 deletions .travis/before-install-linux-python2.sh

This file was deleted.

5 changes: 0 additions & 5 deletions .travis/before-install-linux-python3.sh

This file was deleted.

4 changes: 3 additions & 1 deletion .travis/run-tests-python2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

set -euo pipefail

python --version

mvn -q -Dparallel=methods -DthreadCount=4 -Dtest=python2.* test

cd ../runtime/Python2/tests

python run.py
python run.py
4 changes: 3 additions & 1 deletion .travis/run-tests-python3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

set -euo pipefail

python3 --version

mvn -q -Dparallel=methods -DthreadCount=4 -Dtest=python3.* test

cd ../runtime/Python3/test

python3.6 run.py
python3 run.py

0 comments on commit 115274e

Please sign in to comment.