Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lasse Blaauwbroek
PROSA - Formally Proven Schedulability Analysis
Commits
d0709163
Commit
d0709163
authored
5 years ago
by
Björn Brandenburg
Browse files
Options
Downloads
Patches
Plain Diff
CI: compile classic and new Prosa separately
For improved parallelism and nicer documentation.
parent
61b3b10e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+52
-9
52 additions, 9 deletions
.gitlab-ci.yml
with
52 additions
and
9 deletions
.gitlab-ci.yml
+
52
−
9
View file @
d0709163
...
...
@@ -6,16 +6,21 @@ stages:
stage
:
build
image
:
mathcomp/mathcomp:${CI_JOB_NAME}
script
:
-
./create_makefile.sh
-
./create_makefile.sh
--without-classic
-
make -j ${NJOBS}
1.9.0-coq-8.10
:
extends
:
.build
.build-classic
:
stage
:
build
image
:
mathcomp/mathcomp:1.9.0-coq-8.10
script
:
-
./create_makefile.sh --only-classic
-
make -j ${NJOBS}
.collect-vo-files
:
# Keep track of all compiled output and the build infrastructure
artifacts
:
name
:
prosa-build-files
paths
:
-
_CoqProject
-
Makefile
-
Makefile.conf
# Ugly hack around https://gitlab.com/gitlab-org/gitlab-runner/issues/2620
...
...
@@ -39,6 +44,16 @@ stages:
-
"
*/*/*/*/*/*/*/*/*/*.glob"
expire_in
:
1 week
1.9.0-coq-8.10
:
extends
:
-
.build
-
.collect-vo-files
1.9.0-coq-8.10-classic
:
extends
:
-
.build-classic
-
.collect-vo-files
proof-length
:
stage
:
build
image
:
python:3-alpine
...
...
@@ -55,12 +70,14 @@ spell-check:
extends
:
.build
1.9.0-coq-dev
:
extends
:
.build
extends
:
-
.build
# it's ok to fail with an unreleased version of Coq
allow_failure
:
true
latest-coq-8.10
:
extends
:
.build
extends
:
-
.build
# it's ok to fail with an unreleased version of ssreflect
allow_failure
:
true
...
...
@@ -72,12 +89,17 @@ validate:
-
1.9.0-coq-8.10
script
:
make validate
do
c
:
validate-classi
c
:
stage
:
process
image
:
mathcomp/mathcomp:1.9.0-coq-8.10
needs
:
[
"
1.9.0-coq-8.10"
]
needs
:
[
"
1.9.0-coq-8.10
-classic
"
]
dependencies
:
-
1.9.0-coq-8.10
-
1.9.0-coq-8.10-classic
script
:
make validate
.doc
:
stage
:
process
image
:
mathcomp/mathcomp:1.9.0-coq-8.10
script
:
-
make html -j ${NJOBS}
-
mv html with-proofs
...
...
@@ -85,6 +107,13 @@ doc:
-
mv html without-proofs
-
make htmlpretty -j ${NJOBS}
-
mv html pretty
doc
:
extends
:
-
.doc
needs
:
[
"
1.9.0-coq-8.10"
]
dependencies
:
-
1.9.0-coq-8.10
artifacts
:
name
:
"
prosa-spec-$CI_COMMIT_REF_NAME"
paths
:
...
...
@@ -93,6 +122,20 @@ doc:
-
"
pretty/"
expire_in
:
1 week
doc-classic
:
extends
:
-
.doc
needs
:
[
"
1.9.0-coq-8.10-classic"
]
dependencies
:
-
1.9.0-coq-8.10-classic
artifacts
:
name
:
"
prosa-classic-spec-$CI_COMMIT_REF_NAME"
paths
:
-
"
with-proofs/"
-
"
without-proofs/"
-
"
pretty/"
expire_in
:
1 week
proof-state
:
stage
:
process
image
:
mathcomp/mathcomp:1.9.0-coq-8.10
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment