source: tags/1.6.1/ci/sync-ansi-test.bash

Last change on this file was 15180, checked in by Mark Evenson, 4 years ago

ci: fix ansi-test installation

File size: 317 bytes
Line 
1#!/usr/bin/env bash
2
3pushd ${TRAVIS_BUILD_DIR}/..
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.