Commit 2d561cb0 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[Config] continous integration config.

parent 171507be
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options # see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
# you can delete this line if you're not using Docker # you can delete this line if you're not using Docker
image: busybox:latest #image: busybox:latest
before_script: before_script:
- echo "Before script section" - echo "Before script section"
...@@ -16,21 +16,21 @@ after_script: ...@@ -16,21 +16,21 @@ after_script:
build1: build1:
stage: build stage: build
script: script:
- echo "Do your build here" - ./install
test1: #test1:
stage: test # stage: test
script: # script:
- echo "Do a test here" # - echo "Do a test here"
- echo "For example run a test suite" # - echo "For example run a test suite"
#
test2: #test2:
stage: test # stage: test
script: # script:
- echo "Do another parallel test here" # - echo "Do another parallel test here"
- echo "For example run a lint test" # - echo "For example run a lint test"
#
deploy1: #deploy1:
stage: deploy # stage: deploy
script: # script:
- echo "Do your deploy here" # - echo "Do your deploy here"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment