mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-02 17:49:38 +01:00
6ec78f975b
Rather than always defaulting to master, if Travis is running for a feature branch or a pull request targeting a feature branch, it will default to using the same feature branch in sass-spec.
45 lines
1.3 KiB
Bash
Executable File
45 lines
1.3 KiB
Bash
Executable File
#!/bin/bash -e
|
|
# Copyright 2016 Google Inc. Use of this source code is governed by an MIT-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/MIT.
|
|
|
|
# Echoes the sass-spec Git ref that should be checked out for the current Travis
|
|
# run. If we're running specs for a pull request which refers to a sass-spec
|
|
# pull request, we'll run against the latter rather than sass-spec master.
|
|
|
|
if [[ "$TRAVIS_BRANCH" == feature.* ]]; then
|
|
default="$TRAVIS_BRANCH"
|
|
else
|
|
default=master
|
|
fi
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
|
|
>&2 echo "TRAVIS_PULL_REQUEST: $TRAVIS_PULL_REQUEST."
|
|
>&2 echo "Ref: $default."
|
|
echo "$default"
|
|
exit 0
|
|
fi
|
|
|
|
>&2 echo "Fetching pull request $TRAVIS_PULL_REQUEST..."
|
|
|
|
url=https://api.github.com/repos/sass/dart-sass/pulls/$TRAVIS_PULL_REQUEST
|
|
if [ -z "$GITHUB_TOKEN" ]; then
|
|
>&2 echo "Fetching pull request info without authentication"
|
|
JSON=$(curl -L -sS $url)
|
|
else
|
|
>&2 echo "Fetching pull request info as sassbot"
|
|
JSON=$(curl -u "sassbot:$GITHUB_TOKEN" -L -sS $url)
|
|
fi
|
|
>&2 echo "$JSON"
|
|
|
|
RE_SPEC_PR="sass\/sass-spec(#|\/pull\/)([0-9]+)"
|
|
|
|
if [[ $JSON =~ $RE_SPEC_PR ]]; then
|
|
ref="pull/${BASH_REMATCH[2]}/head"
|
|
>&2 echo "Ref: $ref."
|
|
echo "$ref"
|
|
else
|
|
>&2 echo "Ref: $default."
|
|
echo "$default"
|
|
fi
|