We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013a450 commit e898e5dCopy full SHA for e898e5d
.github/workflows/ci.yml
@@ -104,7 +104,12 @@ jobs:
104
curl -L -O https://tiker.net/ci-support-v0
105
. ./ci-support-v0
106
107
- git clone "https://github.com/inducer/$DOWNSTREAM_PROJECT.git"
+ if [[ "$DOWNSTREAM_PROJECT" = "loopy" || "$DOWNSTREAM_PROJECT" = "pytential" ]] && [[ "$GITHUB_HEAD_REF" = "equality-mapper" ]]; then
108
+ git clone "https://github.com/alexfikl/$DOWNSTREAM_PROJECT.git" -b "equality-mapper"
109
+ else
110
+ git clone "https://github.com/inducer/$DOWNSTREAM_PROJECT.git"
111
+ fi
112
+
113
cd "$DOWNSTREAM_PROJECT"
114
echo "*** $DOWNSTREAM_PROJECT version: $(git rev-parse --short HEAD)"
115
0 commit comments