summaryrefslogtreecommitdiff
path: root/ci/travis_install.sh
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-11-10 16:03:49 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-11-11 07:42:40 -0800
commitfd27dfe649d9764eee5f0dfe63457db653db6414 (patch)
treee0a4a55b807e0e8ce17c2d9101c9d123529fd94e /ci/travis_install.sh
parent3ffe77ba2ca2e832af1a44ca7f3a65cbc1215713 (diff)
downloadmeson-fd27dfe649d9764eee5f0dfe63457db653db6414.tar.gz
travis: Drop osx support
We're now running this through github actions, no need for travis.
Diffstat (limited to 'ci/travis_install.sh')
-rwxr-xr-xci/travis_install.sh17
1 files changed, 2 insertions, 15 deletions
diff --git a/ci/travis_install.sh b/ci/travis_install.sh
index d9d308a45..bbeb1006a 100755
--- a/ci/travis_install.sh
+++ b/ci/travis_install.sh
@@ -4,19 +4,6 @@ set -e
msg() { echo -e "\x1b[1;32mINFO: \x1b[37m$*\x1b[0m"; }
-if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
- msg "Running OSX setup"
- brew update
- # Run one macOS build with pkg-config available (pulled in by qt), and the
- # other (unity=on) without pkg-config
- brew install qt ldc llvm ninja
- if [[ "$MESON_ARGS" =~ .*unity=on.* ]]; then
- which pkg-config && rm -f $(which pkg-config)
- fi
- python3 -m pip install jsonschema
-elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
- msg "Running Linux setup"
- docker pull mesonbuild/eoan
-fi
-
+msg "Running Linux setup"
+docker pull mesonbuild/eoan
msg "Setup finished"