Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't run pipeline if only changes to README.md #12

Merged
merged 1 commit into from
Sep 8, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ build-likwid:
stage: build
tags:
- testcluster
rules:
- changes:
- "README.md"
when: never
- when: always
variables:
SLURM_NODELIST: medusa
LIKWID_MODULE: likwid/5.2-dev
Expand Down Expand Up @@ -45,6 +50,11 @@ test-julia/1.6:
SLURM_CONSTRAINT: hwperf # This allows hardware performance counter access
LIKWID_VERSION: 5.2.0
CUDA_MODULE: cuda/11.0
rules:
- changes:
- "README.md"
when: never
- when: always
needs:
job: build-likwid
before_script:
Expand Down Expand Up @@ -72,6 +82,11 @@ test-julia/nightly:
CUDA_MODULE: cuda/11.0
needs:
job: build-likwid
rules:
- changes:
- "README.md"
when: never
- when: always
before_script:
- cd $CI_PROJECT_DIR/likwid-$LIKWID_VERSION
- make local
Expand Down