We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92470dd commit 43e979bCopy full SHA for 43e979b
.circleci/config.yml
@@ -48,9 +48,11 @@ jobs:
48
command: |
49
PINS=$(opam list -s --pinned --columns=package | xargs | tr ' ' ,)
50
PACKAGES=`opam list -s --depends-on coq-ext-lib --coinstallable-with $PINS`
51
- if [ -n "$PACKAGES" ]
52
- then opam install -t $PACKAGES
53
- fi
+ for PACKAGE in $PACKAGES
+ do DEPS_FAILED=false
+ opam install --deps-only $PACKAGE || DEPS_FAILED=true
54
+ [ $DEPS_FAILED == true ] || opam install -t $PACKAGE
55
+ done
56
- run:
57
name: Uninstall package
58
command: opam uninstall .
0 commit comments