source: tags/1.7.1/ci/install-cl+ssl.bash

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

ci: cl-plus-ssl now tests easye/stream-fd-20200603a

c.f. <https://github.com/armedbear/cl-plus-ssl/tree/easye/stream-fd-20200603a>

File size: 393 bytes
Line 
1#!/usr/bin/env bash
2
3dir="cl-plus-ssl"
4uri="https://github.com/armedbear/${dir}"
5root="${HOME}/quicklisp/local-projects"
6tag="easye/stream-fd-20200603a"
7
8mkdir -p ${root}
9pushd ${root}
10
11if [[ ! -d ${dir} ]]; then 
12    git clone ${uri} ${dir}
13fi
14
15pushd ${dir}
16if [[ -d .hg ]]; then
17    hg update -r $tag
18    hg sum -v
19else
20    git checkout $tag
21    git show-ref
22    git rev-parse
23fi
24popd
25
26popd
Note: See TracBrowser for help on using the repository browser.