Skip to content
Snippets Groups Projects
Commit 16b5e413 authored by Ralf Jung's avatar Ralf Jung
Browse files

add CI builds

parent a28f1888
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: coq:8.5
buildjob:
tags:
- coq
script:
- coqc -v
- 'export IRIS_SHA=$(git submodule status iris | sed "s/^.\([a-f0-9]*\) .*$/\1/")'
# see if we have sth. in the cache, otherwise build Iris
- '[ -d iris-cache/$IRIS_SHA ] && ln -sv iris-cache/$IRIS_SHA iris-enabled'
- '[ -d iris-enabled ] || make iris-local -j8'
# build local repo
- 'time make -j8'
# cache Iris
- mkdir -p iris-cache
- '[ -d iris-cache/$IRIS_SHA ] || cp -a iris iris-cache/$IRIS_SHA'
cache:
key: "lrust"
paths:
- iris-cache/
only:
- master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment