source: trunk/abcl/ci/install-ansi-test.bash

Last change on this file was 15696, checked in by Mark Evenson, 11 months ago

ci: pin ANSI-TEST version

See <https://gitlab.common-lisp.net/ansi-test/ansi-test/-/issues/31>.

File size: 426 bytes
Line 
1#!/usr/bin/env bash
2
3pushd ${ABCL_ROOT}/..
4
5if [[ ! -r ansi-test ]]; then
6    git clone https://gitlab.common-lisp.net/ansi-test/ansi-test
7else
8    pushd ansi-test
9    if [[ -r .hg ]]; then
10        hg pull -u
11    else
12        git fetch
13    fi
14    popd
15fi
16
17pushd ansi-test
18# pin known working version
19# <https://gitlab.common-lisp.net/ansi-test/ansi-test/-/issues/31>
20git checkout 1c832cf
21git show-ref
22git rev-parse
23popd
24
25popd
Note: See TracBrowser for help on using the repository browser.