Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Pump, Cedric
lab-gitlab
Commits
97ab5234
Commit
97ab5234
authored
Nov 09, 2020
by
Pump, Cedric
Browse files
Merge branch 'Praktikumsaufgaben' into 'master'
Praktikumsaufgaben See merge request
!2
parents
41d3466a
b0808259
Pipeline
#21379
passed with stage
in 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
97ab5234
variables
:
GREET
:
"
Mundo"
stages
:
stages
:
-
generate
-
test
-
consume
job1
:
java
:
stage
:
generate
stage
:
test
image
:
"
openjdk:14"
script
:
script
:
-
mkdir build
-
javac src/*.java
-
echo "Hello I am job 1 executed on the $CI_COMMIT_REF_NAME branch only" > build/job1-result.txt
-
java -cp src/ Hello $GREET > result.txt
-
cat result.txt
-
cat result.txt | grep "Hello $GREET"
artifacts
:
artifacts
:
paths
:
paths
:
-
build/
-
./result.txt
only
:
-
master
job2
:
stage
:
generate
script
:
-
mkdir build
-
echo "Hello I am job 2 executed on the $CI_COMMIT_REF_NAME branch only" > build/job2-result.txt
artifacts
:
paths
:
-
build/
only
:
variables
:
-
$CI_COMMIT_REF_NAME == "release"
job3
:
python
:
stage
:
generate
stage
:
test
image
:
"
python:3-slim"
script
:
script
:
-
mkdir build
-
python src/hello.py $GREET > result.txt
-
echo "Hello I am job3 and always executed except for the master or release branch" > build/job3-result.txt
-
cat result.txt
-
cat result.txt | grep "Hello $GREET"
artifacts
:
artifacts
:
paths
:
paths
:
-
build/
-
./result.txt
except
:
\ No newline at end of file
-
master
-
release
job4
:
stage
:
consume
script
:
-
cat build/*-result.txt
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment