source: tags/1.8.0/ci/install-ansi-test.bash

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
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
18git show-ref
19git rev-parse
20popd
21
22popd
Note: See TracBrowser for help on using the repository browser.