Skip to content

Commit 87c20db

Browse files
committed
Merge branch 'master' into rhel8
2 parents 1963533 + 866098f commit 87c20db

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

lib/travis/build/bash/travis_install_jdk.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ travis_install_jdk_ext_provider() {
2727
mkdir -p ~/bin
2828
url="https://$TRAVIS_APP_HOST/files/install-jdk.sh"
2929
if ! travis_download "$url" ~/bin/install-jdk.sh; then
30-
url="https://raw.githubusercontent.com/sormuras/bach/master/install-jdk.sh"
30+
url="https://raw.githubusercontent.com/sormuras/bach/releases/11/install-jdk.sh"
3131
travis_download "$url" ~/bin/install-jdk.sh || {
3232
echo "${ANSI_RED}Could not acquire install-jdk.sh. Stopping build.${ANSI_RESET}" >/dev/stderr
3333
travis_terminate 2

public/version-aliases/ghc.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,17 @@
164164
"8.10.6": "8.10.6",
165165
"8.10.7": "8.10.7",
166166
"9.0.1-alpha1": "9.0.1-alpha1",
167-
"9.0": "9.0.1",
167+
"9.0": "9.0.2",
168168
"9.0.1": "9.0.1",
169-
"9": "9.0.1",
170-
"9.x": "9.0.1",
171-
"9.x.x": "9.0.1",
172-
"9.0.x": "9.0.1",
169+
"9": "9.2.2",
170+
"9.x": "9.2.2",
171+
"9.x.x": "9.2.2",
172+
"9.0.x": "9.0.2",
173+
"9.0.2": "9.0.2",
173174
"9.2.1-alpha1": "9.2.1-alpha1",
174-
"9.2": "9.2.1-alpha2",
175-
"9.2.1-alpha2": "9.2.1-alpha2"
176-
177-
}
175+
"9.2": "9.2.2",
176+
"9.2.1-alpha2": "9.2.1-alpha2",
177+
"9.2.1": "9.2.1",
178+
"9.2.x": "9.2.2",
179+
"9.2.2": "9.2.2"
180+
}

spec/build/addons/rethinkdb_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
end
2525

2626
it { should include_sexp [:cmd, "service rethinkdb stop", sudo: true] }
27-
it { should include_sexp [:cmd, "sudo apt-key adv --keyserver pgp.mit.edu --recv-keys \"539A 3A8C 6692 E6E3 F69B 3FE8 1D85 E93F 801B B43F\"", echo: true] }
28-
it { should include_sexp [:cmd, 'echo -e "\ndeb https://download.rethinkdb.com/repository/ubuntu-$(lsb_release -cs)/ $(lsb_release -cs) main" | sudo tee -a /etc/apt/sources.list > /dev/null'] }
27+
it { should include_sexp [:cmd, "sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys \"539A 3A8C 6692 E6E3 F69B 3FE8 1D85 E93F 801B B43F\"", echo: true] }
28+
it { should include_sexp [:cmd, 'echo -e "\ndeb https://download.rethinkdb.com/repository/ubuntu-$(lsb_release -cs)/ $(lsb_release -cs) main" | sudo tee -a /etc/apt/sources.list.d/rethinkdb.list > /dev/null'] }
2929
it { should include_sexp [:cmd, 'travis_apt_get_update'] }
3030
it { should include_sexp [:cmd, "apt-get install -y -o Dpkg::Options::='--force-confnew' rethinkdb=$package_version", sudo: true, echo: true, timing: true] }
3131
it { should include_sexp [:cmd, "cp /etc/rethinkdb/default.conf.sample /etc/rethinkdb/instances.d/default.conf", sudo: true] }

0 commit comments

Comments
 (0)