forked from reanahub/reana-job-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(maint-0.9): release 0.9.4 (reanahub#418) build(python): bump shared REANA packages as of 2024-11-28 (reanahub#477) fix(kubernetes): avoid privilege escalation in Kubernetes jobs (reanahub#476) fix(config): read secret key from env (reanahub#476) fix(htcondorcern): support multiline commands (reanahub#474) fix(htcondorcern): run provided command in unpacked image (reanahub#474) build(deps): update reana-auth-vomsproxy to 1.3.0 (reanahub#466) build(docker): pin setuptools 70 (reanahub#465) fix(config): update reana-auth-vomsproxy to 1.2.1 to fix WLCG IAM (reanahub#457) feat(backends): add new Compute4PUNCH backend (reanahub#430) Note: The merge commit removes the changes related to pinning `setuptools` to version 70, because this was only necessary for the `maint-0.9` branches, as well as other 0.9.4 release-related changes.
- Loading branch information
Showing
17 changed files
with
778 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,3 +64,6 @@ target/ | |
|
||
# Vagrant | ||
.vagrant | ||
|
||
# Pycharm | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "0.9.3" | ||
".": "0.9.4" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,12 +90,16 @@ ARG DEBUG=0 | |
RUN if [ "${DEBUG}" -gt 0 ]; then \ | ||
if echo "$COMPUTE_BACKENDS" | grep -q "htcondorcern"; then \ | ||
pip install --no-cache-dir -e ".[debug,htcondor]"; \ | ||
elif echo "$COMPUTE_BACKENDS" | grep -q "compute4punch"; then \ | ||
pip install --no-cache-dir ".[debug,mytoken,ssh]"; \ | ||
else \ | ||
pip install --no-cache-dir -e ".[debug]"; \ | ||
fi \ | ||
else \ | ||
if echo "$COMPUTE_BACKENDS" | grep -q "htcondorcern"; then \ | ||
pip install --no-cache-dir ".[htcondor]"; \ | ||
elif echo "$COMPUTE_BACKENDS" | grep -q "compute4punch"; then \ | ||
pip install --no-cache-dir ".[mytoken,ssh]"; \ | ||
else \ | ||
pip install --no-cache-dir .; \ | ||
fi \ | ||
|
@@ -138,7 +142,7 @@ CMD ["flask", "run", "-h", "0.0.0.0"] | |
|
||
# Set image labels | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
LABEL org.opencontainers.image.created="2024-03-04" | ||
LABEL org.opencontainers.image.created="2024-11-29" | ||
LABEL org.opencontainers.image.description="REANA reproducible analysis platform - job controller component" | ||
LABEL org.opencontainers.image.documentation="https://reana-job-controller.readthedocs.io/" | ||
LABEL org.opencontainers.image.licenses="MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.