diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-02-06 16:14:56 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-02-06 16:57:31 +0100 |
commit | bdd60b3cb093d995e00126507824a460de984b3f (patch) | |
tree | 6ded665c1110648c7f96e3f74ff26f1399edab44 | |
parent | fa3e3d19b41b4846edb9a5efa0352c81413842cd (diff) |
always keep build artifacts
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7a6d923..a07fe31 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,7 @@ build: stage: build artifacts: untracked: true + when: always only: - master @@ -19,7 +20,6 @@ test: script: - ./funcjmp_simple_x86 || test $? -eq 66 - ./funcjmp_ext_x86 || test $? -eq 66 - - ./exec_crypter stage: test dependencies: - build |