Skip to content

Commit a01756f

Browse files
committed
sync with tci master
1 parent 5f10098 commit a01756f

File tree

3 files changed

+23
-10
lines changed

3 files changed

+23
-10
lines changed

lib/travis/build/addons/rethinkdb.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def after_prepare
1515
sh.else do
1616
sh.echo "Installing RethinkDB version #{rethinkdb_version}", ansi: :yellow
1717
sh.cmd "service rethinkdb stop", sudo: true
18-
sh.cmd "sudo apt-key adv --keyserver keys.gnupg.net --recv-keys \"539A 3A8C 6692 E6E3 F69B 3FE8 1D85 E93F 801B B43F\"", echo: true
19-
sh.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'
18+
sh.cmd "sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys \"539A 3A8C 6692 E6E3 F69B 3FE8 1D85 E93F 801B B43F\"", echo: true
19+
sh.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'
2020
sh.cmd 'travis_apt_get_update', assert: false
2121
sh.cmd "package_version=`apt-cache show rethinkdb | grep -F \"Version: #{rethinkdb_version}\" | sort -r | head -n 1 | awk '{printf $2}'`"
2222
sh.cmd "apt-get install -y -o Dpkg::Options::='--force-confnew' rethinkdb=$package_version", sudo: true, echo: true, timing: true

public/version-aliases/ghc.json

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@
115115
"7.10.2": "7.10.2",
116116
"7.10.3": "7.10.3",
117117
"8.0.1": "8.0.1",
118-
"8": "8.10.3",
119-
"8.x": "8.10.3",
120-
"8.x.x": "8.10.3",
118+
"8": "8.10.7",
119+
"8.x": "8.10.7",
120+
"8.x.x": "8.10.7",
121121
"8.0.x": "8.0.2",
122122
"8.0": "8.0.2",
123123
"8.0.2": "8.0.2",
@@ -153,12 +153,25 @@
153153
"8.8.3": "8.8.3",
154154
"8.8.4": "8.8.4",
155155
"8.10.1-alpha1": "8.10.1-alpha1",
156-
"8.10": "8.10.3",
156+
"8.10": "8.10.7",
157157
"8.10.1-alpha2": "8.10.1-alpha2",
158158
"8.10.1": "8.10.1",
159-
"8.10.x": "8.10.3",
159+
"8.10.x": "8.10.7",
160160
"8.10.2": "8.10.2",
161161
"8.10.3": "8.10.3",
162+
"8.10.4": "8.10.4",
163+
"8.10.5": "8.10.5",
164+
"8.10.6": "8.10.6",
165+
"8.10.7": "8.10.7",
162166
"9.0.1-alpha1": "9.0.1-alpha1",
163-
"9.0": "9.0.1-alpha1"
164-
}
167+
"9.0": "9.0.1",
168+
"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",
173+
"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+
}

spec/build/addons/rethinkdb_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
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 keys.gnupg.net --recv-keys \"539A 3A8C 6692 E6E3 F69B 3FE8 1D85 E93F 801B B43F\"", echo: 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] }
2828
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'] }
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] }

0 commit comments

Comments
 (0)