Last change
on this file was
15298,
checked in by Mark Evenson, 4 years ago
|
ci: remove all mention of TRAVIS_BUILD_DIR
Decouple the scripts under <file:ci/> by not using any reference to
Travis CI specific variables.
TODO: depend on explict command line arguments rather than "magic
side-effects" from environment variables.
|
File size:
310 bytes
|
Line | |
---|
1 | #!/usr/bin/env bash |
---|
2 | |
---|
3 | pushd ${ABCL_ROOT}/.. |
---|
4 | |
---|
5 | if [[ ! -r ansi-test ]]; then |
---|
6 | git clone https://gitlab.common-lisp.net/ansi-test/ansi-test |
---|
7 | else |
---|
8 | pushd ansi-test |
---|
9 | if [[ -r .hg ]]; then |
---|
10 | hg pull -u |
---|
11 | else |
---|
12 | git fetch |
---|
13 | fi |
---|
14 | popd |
---|
15 | fi |
---|
16 | |
---|
17 | pushd ansi-test |
---|
18 | git show-ref |
---|
19 | git rev-parse |
---|
20 | popd |
---|
21 | |
---|
22 | popd |
---|
Note: See
TracBrowser
for help on using the repository browser.