Skip to content

Commit 0b9f330

Browse files
committed
Create a gitlab ci yml
1 parent 64d4912 commit 0b9f330

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.gitlab-ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
stages:
2+
- generate
3+
- test
4+
5+
generate-pipeline:
6+
stage: generate
7+
script:
8+
- pip install reframe-hpc
9+
- reframe --ci-generate=${CI_PROJECT_DIR}/pipeline.yml -c ${CI_PROJECT_DIR}/reframe/checks
10+
artifacts:
11+
paths:
12+
- ${CI_PROJECT_DIR}/pipeline.yml
13+
14+
test-jobs:
15+
stage: test
16+
trigger:
17+
include:
18+
- artifact: pipeline.yml
19+
job: generate-pipeline
20+
strategy: depend

0 commit comments

Comments
 (0)