Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
BioHPC
training_example_ci
Commits
5f800f16
Commit
5f800f16
authored
Nov 08, 2021
by
Devin OKelly
Browse files
allow failures
parent
cfabb8b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
5f800f16
...
...
@@ -57,12 +57,14 @@ unit-test-pass-last: # This job will not run 'always_passes' because the earli
script
:
-
bash ./tests/unit/always_fails.sh;
-
bash ./tests/unit/always_passes.sh;
allow_failure
:
true
unit-test-fail-last
:
# This job runs in the test stage.
stage
:
test
# It only starts when the job in the build stage completes successfully.
script
:
-
bash ./tests/unit/always_passes.sh;
-
bash ./tests/unit/always_fails.sh;
allow_failure
:
true
unit-test-only-pass
:
# This job runs in the test stage.
stage
:
test
# It only starts when the job in the build stage completes successfully.
...
...
Write
Preview
Markdown
is supported
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