Skip to content
Snippets Groups Projects
Commit 70ecefd4 authored by Colin DAMON's avatar Colin DAMON
Browse files

Fix build trigerring && project name norme

parent 3fe26d94
No related branches found
No related tags found
1 merge request!14Resolve "Fix build trigerring"
Showing
with 42 additions and 22 deletions
...@@ -3,6 +3,6 @@ stages: ...@@ -3,6 +3,6 @@ stages:
include: include:
- local: "/.gitlab-common-ci.yml" - local: "/.gitlab-common-ci.yml"
- local: "/wordWrap/.gitlab-ci.yml" - local: "/word-wrap/.gitlab-ci.yml"
- local: "/romanNumerals/.gitlab-ci.yml" - local: "/roman-numerals/.gitlab-ci.yml"
- local: "/stringCalculator/.gitlab-ci.yml" - local: "/string-calculator/.gitlab-ci.yml"
...@@ -27,12 +27,4 @@ cache: ...@@ -27,12 +27,4 @@ cache:
- $PROJECT_FOLDER/target/site/jacoco - $PROJECT_FOLDER/target/site/jacoco
name: "$PROJECT_FOLDER-report" name: "$PROJECT_FOLDER-report"
expire_in: 1 day expire_in: 1 day
only:
refs:
- master
- merge_requests
changes:
- ".gitlab-ci.yml"
- ".gitlab-common-ci.yml"
- "$PROJECT_FOLDER/**/*"
coverage: "/([^%]+) %covered/" coverage: "/([^%]+) %covered/"
...@@ -15,6 +15,6 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré ...@@ -15,6 +15,6 @@ Ce dépôt Git a pour but de partager les différents ateliers pouvant être ré
## Kata Live Coding ## Kata Live Coding
1. [WordWrap](/wordWrap) 1. [WordWrap](/word-wrap)
2. [RomanNumerals](/romanNumerals) 2. [RomanNumerals](/roman-numerals)
3. [StringCalculator](/stringCalculator) 3. [StringCalculator](/string-calculator)
package-roman-numerals:
variables:
PROJECT_FOLDER: "roman-numerals"
extends: .java
only:
refs:
- master
- merge_requests
changes:
- ".gitlab-ci.yml"
- ".gitlab-common-ci.yml"
- "roman-numerals/**/*"
File moved
File moved
package-roman-numerals:
variables:
PROJECT_FOLDER: "romanNumerals"
extends: .java
package-string-calculator:
variables:
PROJECT_FOLDER: "string-calculator"
extends: .java
only:
refs:
- master
- merge_requests
changes:
- ".gitlab-ci.yml"
- ".gitlab-common-ci.yml"
- "string-calculator/**/*"
File moved
File moved
package-string-calculator:
variables:
PROJECT_FOLDER: "stringCalculator"
extends: .java
package-word-wrap:
variables:
PROJECT_FOLDER: "word-wrap"
extends: .java
only:
refs:
- master
- merge_requests
changes:
- ".gitlab-ci.yml"
- ".gitlab-common-ci.yml"
- "word-wrap/**/*"
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment