Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
COLIBRI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
COLIBRI
Commits
4622da4c
Commit
4622da4c
authored
1 year ago
by
Christophe Junke
Browse files
Options
Downloads
Patches
Plain Diff
split continuous integration in two steps
parent
7a36e971
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!44
CI - separate jobs for building and testing
Pipeline
#63260
passed
1 year ago
Stage: build
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+23
-4
23 additions, 4 deletions
.gitlab-ci.yml
with
23 additions
and
4 deletions
.gitlab-ci.yml
+
23
−
4
View file @
4622da4c
tests_with_recompilation
:
stages
:
-
build
-
test
build
:
image
:
ocaml/opam@sha256:aabf10d76f588677f6ee8007aae3d4dd45d28000501abce5aabda9de50e88dc7
stage
:
build
script
:
-
sudo apt-get update
-
sudo apt-get install -y make
parallel
libgmp-dev
-
sudo apt-get install -y make libgmp-dev
-
opam install dune.3.12.1 fmt.0.9.0 gen.1.1 menhir.20230608 ocplib-simplex.0.5 parsexp.v0.16.0 spelll.0.4 uutf.1.0.3 zarith.1.13
-
make clean
-
make clean_bundle
-
make
-
make bundle
-
make test
artifacts
:
paths
:
-
logs
-
bundle
expire_in
:
1 week
tags
:
-
docker
test
:
image
:
debian@sha256:7ceacc4462a98718b236cbdeb850d4b7603afe4bab791336a0ed1c030f769f02
stage
:
test
needs
:
[
build
]
script
:
-
apt-get update
-
apt-get install -y make parallel
-
make test
artifacts
:
paths
:
-
logs
expire_in
:
1 week
tags
:
-
docker
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