Skip to content

Commit 0f7b702

Browse files
committed
add ATBR plugin to CI
1 parent 6f1588d commit 0f7b702

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -839,6 +839,9 @@ library:ci-coq_library_undecidability:
839839
plugin:ci-aac_tactics:
840840
extends: .ci-template-flambda
841841

842+
plugin:ci-atbr:
843+
extends: .ci-template-flambda
844+
842845
plugin:ci-itauto:
843846
extends: .ci-template
844847

Makefile.ci

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ CI_TARGETS= \
1212
ci-itauto \
1313
ci-aac_tactics \
1414
ci-argosy \
15+
ci-atbr \
1516
ci-autosubst \
1617
ci-bbv \
1718
ci-bedrock2 \

dev/ci/ci-atbr.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
ci_dir="$(dirname "$0")"
6+
. "${ci_dir}/ci-common.sh"
7+
8+
git_download atbr
9+
10+
if [ "$DOWNLOAD_ONLY" ]; then exit 0; fi
11+
12+
( cd "${CI_BUILD_DIR}/atbr"
13+
make
14+
make install
15+
)

dev/ci/ci-basic-overlay.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,11 @@ project stdlib2 "https://github.com/coq/stdlib2" "master"
305305
########################################################################
306306
project argosy "https://github.com/mit-pdos/argosy" "master"
307307

308+
########################################################################
309+
# ATBR
310+
########################################################################
311+
project atbr "https://github.com/coq-community/atbr" "master"
312+
308313
########################################################################
309314
# perennial
310315
########################################################################

0 commit comments

Comments
 (0)