Commit eacde388 authored by Tobias Munk's avatar Tobias Munk

run jobs on tags

parent 7d7e33be
...@@ -22,8 +22,6 @@ build: ...@@ -22,8 +22,6 @@ build:
script: script:
- cp .env-dist .env - cp .env-dist .env
- make build - make build
except:
- tags
test: test:
stage: test stage: test
...@@ -34,8 +32,6 @@ test: ...@@ -34,8 +32,6 @@ test:
- set -e - set -e
- cp -r tests/codeception/_output/ /tmp/${BUILD_PREFIX}/${CI_BUILD_NAME} - cp -r tests/codeception/_output/ /tmp/${BUILD_PREFIX}/${CI_BUILD_NAME}
- exit ${EXIT_CODE} - exit ${EXIT_CODE}
except:
- tags
test-allow_failure: test-allow_failure:
stage: test_pre stage: test_pre
...@@ -62,8 +58,6 @@ lint: ...@@ -62,8 +58,6 @@ lint:
- cp -r tests/_lint/ /tmp/${BUILD_PREFIX}/${CI_BUILD_NAME} || EXIT_CODE=$? - cp -r tests/_lint/ /tmp/${BUILD_PREFIX}/${CI_BUILD_NAME} || EXIT_CODE=$?
- exit ${EXIT_CODE} - exit ${EXIT_CODE}
allow_failure: true allow_failure: true
except:
- tags
report: report:
stage: report stage: report
...@@ -73,8 +67,6 @@ report: ...@@ -73,8 +67,6 @@ report:
paths: paths:
- $(basename $PWD)-${CI_BUILD_REF} - $(basename $PWD)-${CI_BUILD_REF}
when: always when: always
except:
- tags
cleanup: cleanup:
stage: cleanup stage: cleanup
...@@ -86,8 +78,6 @@ cleanup: ...@@ -86,8 +78,6 @@ cleanup:
- make TEST clean - make TEST clean
- rm -rf /tmp/${BUILD_PREFIX} - rm -rf /tmp/${BUILD_PREFIX}
when: always when: always
except:
- tags
deploy: deploy:
stage: deploy stage: deploy
...@@ -95,5 +85,3 @@ deploy: ...@@ -95,5 +85,3 @@ deploy:
- bash build/scripts/deploy.sh - bash build/scripts/deploy.sh
only: only:
- master - master
except:
- tags
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