Skip to content
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

Build-push actions fail: oras: not found #291

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/docker_build_push_gwas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ jobs:
steps:
- name: Check out code for the container builds
uses: actions/checkout@v4
- name: Setup ORAS
uses: oras-project/setup-oras@v1
with:
version: 1.0.0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker_build_push_hello.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ jobs:
steps:
- name: Check out code for the container builds
uses: actions/checkout@v4
- name: Setup ORAS
uses: oras-project/setup-oras@v1
with:
version: 1.0.0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker_build_push_python3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ jobs:
steps:
- name: Check out code for the container builds
uses: actions/checkout@v4
- name: Setup ORAS
uses: oras-project/setup-oras@v1
with:
version: 1.0.0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker_build_push_r.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ jobs:
steps:
- name: Check out code for the container builds
uses: actions/checkout@v4
- name: Setup ORAS
uses: oras-project/setup-oras@v1
with:
version: 1.0.0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ If MD5 sum is not listed for a certain release then it means that the container

### Fixed

* Fixed missing ORAS CLI with `ubuntu-latest` runners in GitHub Actions
* Fixed broken unit test in `tests/test_LDpred2/scripts/ld.sh`
* Fixed broken unit test `tests/test_gwas.py::test_gwas_metal` with Apptainer "sandbox" mode
* Workaround for pandas import before scipy in python codes via `export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH`
Expand Down
Loading