Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Mar 20, 2024
1 parent cdfe6b0 commit 6e2e038
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
platforms: linux/amd64
push: false
load: true
tags: databrowser
tags: databrowser:latest

- name: Check databrowser image
run: python3 dev-env/check-container.py
Expand Down
2 changes: 1 addition & 1 deletion dev-env/check-container.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def check_container(container_name: str = "databrowser") -> None:
container_name,
],
)
time.sleep(5)
time.sleep(10)
if process.poll() is not None:
raise RuntimeError("Container died.")
res = urllib.request.Request(
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ deps = git-python
commands = python3 bump.py tag databrowser -b docker-improvements
allowlist_externals = rm
curl
commands_pre = curl -Ls -o bump.py https://raw.githubusercontent.com/FREVA-CLINT/freva-deployment/versions/release.py
commands_pre = curl -H 'Cache-Control: no-cache' -Ls -o bump.py https://raw.githubusercontent.com/FREVA-CLINT/freva-deployment/versions/release.py
commands_post = rm bump.py
[testenv:bump]
commands = python3 bump.py deploy databrowser -b versions -v
commands_pre = curl -Ls -o bump.py https://raw.githubusercontent.com/FREVA-CLINT/freva-deployment/versions/release.py
commands_pre = curl -H 'Cache-Control: no-cache' -Ls -o bump.py https://raw.githubusercontent.com/FREVA-CLINT/freva-deployment/versions/release.py
allowlist_externals = rm
curl
commands_post = rm bump.py
Expand Down

0 comments on commit 6e2e038

Please sign in to comment.