We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ae7cc6 commit 5356870Copy full SHA for 5356870
script/cibuild-gh-ost-replica-tests
@@ -7,7 +7,7 @@ whoami
7
fetch_ci_env() {
8
# Clone gh-ost-ci-env
9
# Only clone if not already running locally at latest commit
10
- remote_commit=$(git ls-remote https://github.com/github/gh-ost-ci-env.git fix-8016-tarball | cut -f1)
+ remote_commit=$(git ls-remote https://github.com/github/gh-ost-ci-env.git HEAD | cut -f1)
11
local_commit="unknown"
12
[ -d "gh-ost-ci-env" ] && local_commit=$(cd gh-ost-ci-env && git log --format="%H" -n 1)
13
@@ -19,8 +19,8 @@ fetch_ci_env() {
19
git clone https://github.com/github/gh-ost-ci-env.git
20
(
21
cd gh-ost-ci-env
22
- git fetch origin fix-8016-tarball
23
- git checkout fix-8016-tarball
+ git fetch origin master
+ git checkout master
24
)
25
fi
26
}
0 commit comments