source:
tags/1.9.2/ci/install-ansi-test.bash
| Last change on this file was 15696, checked in by , 3 years ago | |
|---|---|
| File size: 426 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 | # pin known working version |
| 19 | # <https://gitlab.common-lisp.net/ansi-test/ansi-test/-/issues/31> |
| 20 | git checkout 1c832cf |
| 21 | git show-ref |
| 22 | git rev-parse |
| 23 | popd |
| 24 | |
| 25 | popd |
Note: See TracBrowser
for help on using the repository browser.