Skip to content

Commit

Permalink
Add gitlab-ci.yml as requirement for all CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Meyer committed Sep 17, 2021
1 parent 3fcbde8 commit 03f7eda
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ build:STREAM:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml


build:RandomAccess:
Expand All @@ -58,6 +59,7 @@ build:RandomAccess:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml


build:PTRANS:
Expand All @@ -80,6 +82,7 @@ build:PTRANS:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

build:LINPACK:
stage: build
Expand All @@ -100,6 +103,7 @@ build:LINPACK:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

build:GEMM:
stage: build
Expand All @@ -120,6 +124,7 @@ build:GEMM:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

build:GEMM_HP_REP2:
stage: build
Expand All @@ -140,6 +145,7 @@ build:GEMM_HP_REP2:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

build:FFT:
stage: build
Expand All @@ -160,6 +166,7 @@ build:FFT:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

build:FFT_small:
stage: build
Expand All @@ -180,6 +187,7 @@ build:FFT_small:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

build:b_eff:
stage: build
Expand All @@ -202,6 +210,7 @@ build:b_eff:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml

###
#
Expand All @@ -227,6 +236,7 @@ test:STREAM:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:STREAM"]

test:RandomAccess:
Expand All @@ -247,6 +257,7 @@ test:RandomAccess:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:RandomAccess"]

test:PTRANS:
Expand Down Expand Up @@ -277,6 +288,7 @@ test:PTRANS:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:PTRANS"]

test:LINPACK:
Expand All @@ -297,6 +309,7 @@ test:LINPACK:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:LINPACK"]

test:GEMM:
Expand All @@ -317,6 +330,7 @@ test:GEMM:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:GEMM"]

test:GEMM_HP_REP2:
Expand All @@ -337,6 +351,7 @@ test:GEMM_HP_REP2:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:GEMM_HP_REP2"]

test:FFT:
Expand All @@ -357,6 +372,7 @@ test:FFT:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:FFT"]

test:FFT_small:
Expand All @@ -377,6 +393,7 @@ test:FFT_small:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:FFT_small"]

test:b_eff:
Expand Down Expand Up @@ -407,6 +424,7 @@ test:b_eff:
- shared/**/*
- scripts/**/*
- cmake/**/*
- .gitlab-ci.yml
needs: ["build:b_eff"]


0 comments on commit 03f7eda

Please sign in to comment.