Skip to content

Commit 361858a

Browse files
authored
Merge pull request #210 from SethTisue/travis-ci-com-2.12
[backport] new TRAVIS_TOKEN
2 parents 2d92000 + 199a4c5 commit 361858a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ env:
3030
- secure: "NlnFqZs4mvCi63GqCdUNDsx9BoiyrjgoV0cUaKlhVYp49/qAMlEaKf6JABWy/oCHoWsTyysyLEtZLsWfjAyE4+FUHSzngNUHVFBbtyudA6aKQ7jMsqkcMM/K0h+ymnhHSv8bugc8jXKFgmfYk4YTi5dZgv8CAOSQFAFUaxVdYTY="
3131
# APPVEYOR_TOKEN (login with GitHub as lrytz, use the scala organization)
3232
- secure: "aHM0UWkbFN0bXQja2f9lUcSgqHzXYkYqqV8/nP5MTLKJG8BpuaLYxI4gHfkPmxSm9/TTniA3zUVN//lJTvhco5J5Dtxfo5DeCLWsjQcQxrsgAFD97FpMpGbtFAViZuiv7SdPGvzXQY6AwvteBpxOday4T224aH5OjZJ0DxySx8Q="
33-
# TRAVIS_TOKEN (login with GitHub as lrytz)
34-
- secure: "K6G3SeMRMgC8JUZADyd4RKvQpgHOZb8/8kk3AlDtRWZmrBPkZpTrtcuQLYXRiEAO/beQH956i3+uDeFryF079YTJZKtdqLTxwXS53gVurOv9VVbZFubu4HzXWMWeCIi9Np7S0eB1qc4NIKB+T5pbmIfEFGKThBGK179uwf2lqQ8="
33+
# TRAVIS_TOKEN (login with GitHub as SethTisue)
34+
- secure: "KzcB0qrsnD0o4iBW2dI/5uoHoPF8EVJpC+T+caA76WaXKRqVwr996FM83ky7XDeUjwop2bBtoIIiWXoTFqCI/oyIYggcdhphmdnq9IKGG3LXD49QUq60MRSRc+jAg3RY0TPQ/f4qcZaLfa0PHGN79n1DbYlSeZfwSg+xKlZ2f/8="
3535
# AWS_ACCESS_KEY_ID
3636
- secure: "BrsLFLXLdJ3aesJGuoVXFdKluYl7QYBYjn5+ttoep2nc6/E+L3UDaR//ztxwex4a9yFi5q2jCs911FzVsk78ODamr5w8FBlOuu06RoVx642+U/agG7yUdAtvEzH2KVTBNjY0oYHZ+OlVEkeYgnkrsbfki+ujPWEnxkakWyrGtJw="
3737
# AWS_SECRET_ACCESS_KEY

admin/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function triggerSmoketest() {
6262
-H "Authorization: token $TRAVIS_TOKEN" \
6363
-H "Content-Type: application/json" \
6464
-d "$json" \
65-
https://api.travis-ci.org/repo/scala%2Fscala-dist-smoketest/requests)
65+
https://api.travis-ci.com/repo/scala%2Fscala-dist-smoketest/requests)
6666

6767
[[ "$curlStatus" == "202" ]] || {
6868
echo "Failed to start travis build"

scripts/common

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function travis_fold_end() {
1414
function postCommitStatus() {
1515
if [[ "$scala_sha" != "" ]]; then
1616
local jsonTemplate='{ "state": "%s", "target_url": "%s", "description": "%s", "context": "%s"}'
17-
local json=$(printf "$jsonTemplate" "$1" "https://travis-ci.org/scala/scala-dist/builds/$TRAVIS_BUILD_ID" "$1" "travis/scala-dist/$version/$mode")
17+
local json=$(printf "$jsonTemplate" "$1" "https://travis-ci.com/scala/scala-dist/builds/$TRAVIS_BUILD_ID" "$1" "travis/scala-dist/$version/$mode")
1818

1919
local curlStatus=$(curl \
2020
-s -o /dev/null -w "%{http_code}" \

0 commit comments

Comments
 (0)