From 36a6dcc9807658afd3ba24246a6660f313e52467 Mon Sep 17 00:00:00 2001 From: Ari Crellin-Quick Date: Mon, 9 Dec 2019 10:17:26 -0800 Subject: [PATCH] Update travis install script & yaml --- .travis.yml | 2 +- .travis/travis_install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ba0d687..cb7223d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,7 +52,6 @@ addons: - wget - nodejs - supervisor - - nginx - unzip - libnss3 - libgconf-2-4 @@ -74,6 +73,7 @@ before_install: - wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - - sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6B05F25D762E3157 - source .travis/travis_funcs.sh + - export PYTHONPATH=$PYTHONPATH:$(pwd) install: # Workaround for invalid GPG keys for MongoDB, CouchDB, and git-lfs diff --git a/.travis/travis_install.sh b/.travis/travis_install.sh index 4b3ce6e..21f9742 100755 --- a/.travis/travis_install.sh +++ b/.travis/travis_install.sh @@ -5,7 +5,7 @@ set -ex section "install.base.requirements" # Install v1.7 or newer of nginx to support 'if' statement for logging -sudo apt-add-repository -y ppa:nginx/development +sudo apt-add-repository -y ppa:nginx/stable sudo apt update sudo apt install -y nginx firefox @@ -42,7 +42,7 @@ section_end "init.db" section "install.geckodriver.and.selenium" -GECKO_VER=0.24.0 +GECKO_VER=0.26.0 wget https://github.com/mozilla/geckodriver/releases/download/v${GECKO_VER}/geckodriver-v${GECKO_VER}-linux64.tar.gz sudo tar -xzf geckodriver-v${GECKO_VER}-linux64.tar.gz -C /usr/local/bin rm geckodriver-v${GECKO_VER}-linux64.tar.gz