Skip to content

[Bugfix] Retry setup on failure rather than continue_on_error #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ timeout:
functions:
"fetch source":
- command: git.get_project
type: setup
params:
directory: "src"

"fetch repo":
- command: shell.exec
type: setup
params:
working_dir: "src"
script: |
Expand Down Expand Up @@ -60,16 +62,17 @@ functions:
"setup atlas cli":
- command: subprocess.exec
type: setup
retry_on_failure: true
params:
add_expansions_to_env: true
continue_on_err: true
working_dir: "src"
binary: bash
env:
atlas: ${workdir}/src/atlas/bin/atlas
args:
- .evergreen/provision-atlas.sh

pre_error_fails_task: true
pre:
- func: "fetch source"
- func: "setup atlas cli"
Expand Down