Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
amdis
Commits
e743c658
Commit
e743c658
authored
Oct 27, 2016
by
Praetorius, Simon
Browse files
implement artifacts and dependencies in gitlab-ci
parent
866b205b
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
e743c658
---
image
:
mathiwr/amdis-base:debian9
cache
:
-
install/
stages
:
-
build
-
demo
...
...
@@ -15,6 +12,9 @@ build:9-debug-gcc:
stage
:
build
script
:
-
tools/build_amdis.sh --stage build --config Debug
artifacts
:
paths
:
-
install/
only
:
-
master
...
...
@@ -22,6 +22,9 @@ build:9-release-gcc:
stage
:
build
script
:
-
tools/build_amdis.sh --stage build --config Release
artifacts
:
paths
:
-
install/
only
:
-
master
...
...
@@ -29,6 +32,9 @@ build:9-parallel-debug-gcc:
stage
:
build
script
:
-
tools/build_amdis.sh --stage build --config Debug --parallel
artifacts
:
paths
:
-
install/
only
:
-
master
...
...
@@ -36,6 +42,9 @@ build:9-parallel-release-gcc:
stage
:
build
script
:
-
tools/build_amdis.sh --stage build --config Release --parallel
artifacts
:
paths
:
-
install/
only
:
-
master
...
...
@@ -45,6 +54,8 @@ demo:9-debug-gcc:
stage
:
demo
script
:
-
tools/build_amdis.sh --stage demo --config Debug
dependencies
:
-
build:9-debug-gcc
only
:
-
master
...
...
@@ -52,6 +63,8 @@ demo:9-release-gcc:
stage
:
demo
script
:
-
tools/build_amdis.sh --stage demo --config Release
dependencies
:
-
build:9-release-gcc
only
:
-
master
...
...
@@ -59,6 +72,8 @@ demo:9-parallel-debug-gcc:
stage
:
demo
script
:
-
tools/build_amdis.sh --stage demo --config Debug --parallel
dependencies
:
-
build:9-parallel-debug-gcc
only
:
-
master
...
...
@@ -66,6 +81,8 @@ demo:9-parallel-release-gcc:
stage
:
demo
script
:
-
tools/build_amdis.sh --stage demo --config Release --parallel
dependencies
:
-
build:9-parallel-release-gcc
only
:
-
master
...
...
@@ -75,6 +92,8 @@ test:9-debug-gcc:
stage
:
test
script
:
-
tools/build_amdis.sh --stage test --config Debug
dependencies
:
-
build:9-debug-gcc
only
:
-
master
...
...
@@ -82,6 +101,8 @@ test:9-release-gcc:
stage
:
test
script
:
-
tools/build_amdis.sh --stage test --config Release
dependencies
:
-
build:9-release-gcc
only
:
-
master
...
...
@@ -89,6 +110,8 @@ test:9-parallel-debug-gcc:
stage
:
test
script
:
-
tools/build_amdis.sh --stage test --config Debug --parallel
dependencies
:
-
build:9-parallel-debug-gcc
only
:
-
master
...
...
@@ -96,6 +119,8 @@ test:9-parallel-release-gcc:
stage
:
test
script
:
-
tools/build_amdis.sh --stage test --config Release --parallel
dependencies
:
-
build:9-parallel-release-gcc
only
:
-
master
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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