Skip to content

Commit 258c7c8

Browse files
author
Yishuai Li
committed
CI: diverge from template to skip dependants
1 parent b3c05e7 commit 258c7c8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This file was generated from `meta.yml`, please do not edit manually.
2-
# Follow the instructions on https://github.com/coq-community/templates to regenerate.
3-
41
version: 2.1
52

63
jobs:
@@ -16,6 +13,8 @@ jobs:
1613
OPAMVERBOSE: 1
1714
OPAMYES: true
1815
TERM: xterm
16+
SKIP_BUILD: |
17+
coq-certicoq
1918
steps:
2019
- checkout
2120
- run:
@@ -49,6 +48,8 @@ jobs:
4948
PACKAGES=`opam list -s --depends-on coq-ext-lib --coinstallable-with $PINS`
5049
for PACKAGE in $PACKAGES
5150
do DEPS_FAILED=false
51+
echo $SKIP_BUILD | tr ' ' '\n' | grep ^$PACKAGE$ > /dev/null &&
52+
echo Skip $PACKAGE && continue
5253
opam install --deps-only $PACKAGE || DEPS_FAILED=true
5354
[ $DEPS_FAILED == true ] || opam install -t $PACKAGE
5455
done

meta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ shortname: coq-ext-lib
44
opam_name: coq-ext-lib
55
organization: coq-community
66
community: true
7-
circleci: true
7+
circleci: false
88
ci_test_dependants: true
99
submodule: true
1010

0 commit comments

Comments
 (0)