Skip to content

move from travis-ci.org to travis-ci.com #209

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function triggerSmoketest() {
-H "Authorization: token $TRAVIS_TOKEN" \
-H "Content-Type: application/json" \
-d "$json" \
https://api.travis-ci.org/repo/scala%2Fscala-dist-smoketest/requests)
https://api.travis-ci.com/repo/scala%2Fscala-dist-smoketest/requests)

[[ "$curlStatus" == "202" ]] || {
echo "Failed to start travis build"
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.17
sbt.version=0.13.18
2 changes: 1 addition & 1 deletion scripts/common
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function travis_fold_end() {
function postCommitStatus() {
if [[ "$scala_sha" != "" ]]; then
local jsonTemplate='{ "state": "%s", "target_url": "%s", "description": "%s", "context": "%s"}'
local json=$(printf "$jsonTemplate" "$1" "https://travis-ci.org/scala/scala-dist/builds/$TRAVIS_BUILD_ID" "$1" "travis/scala-dist/$version/$mode")
local json=$(printf "$jsonTemplate" "$1" "https://travis-ci.com/scala/scala-dist/builds/$TRAVIS_BUILD_ID" "$1" "travis/scala-dist/$version/$mode")

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