Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/container_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
type=ref,event=pr
type=pep440,pattern={{version}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
type=sha
type=raw,value=latest,enable={{is_default_branch}}
- name: Set up QEMU
Expand All @@ -54,6 +54,7 @@ jobs:
tags: ${{ env.LATEST_TAG }}
file:
./dockerfiles/container_template/Dockerfile
platforms: linux/amd64

- name: Run unit tests I
run: |
Expand Down Expand Up @@ -81,8 +82,7 @@ jobs:
with:
context: "{{defaultContext}}:docker"
push: False
load: True
tags: ${{ steps.meta.outputs.tags }}
file:
./dockerfiles/container_template/Dockerfile
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
6 changes: 3 additions & 3 deletions .github/workflows/container_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
type=ref,event=pr
type=pep440,pattern={{version}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
type=sha
type=raw,value=latest,enable={{is_default_branch}}
- name: Set up QEMU
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
file:
./dockerfiles/container_template/Dockerfile
platforms: linux/amd64
platforms: linux/amd64,linux/arm64

build-apptainer-container:
needs: docker
Expand Down Expand Up @@ -114,8 +114,8 @@ jobs:
type=ref,event=pr
type=pep440,pattern={{version}}
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
type=sha
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Apptainer container
Expand Down
4 changes: 2 additions & 2 deletions scripts/PROJECT_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ tar --exclude=".git/*" -cvf container_template_$SHA.tar container_template
| OS/tool | Version | License | Source
| ------------------- | --------------------- | ----------------- | -------------
| ubuntu | 24.04 | [Creative Commons CC-BY-SA version 3.0 UK licence](https://ubuntu.com/legal/intellectual-property-policy) | [Ubuntu.com](https://ubuntu.com)
| mambaforge | 24.7.1-0 | [BSD-3-Clause](https://github.com/conda-forge/miniforge/blob/main/LICENSE) | [MiniForge](https://github.com/conda-forge/miniforge)
| python | 3.12.5 | [PSF](https://docs.python.org/3.10/license.html) | [Python.org](https://www.python.org)
| Miniforge3 | 26.1.1-3 | [BSD-3-Clause](https://github.com/conda-forge/miniforge/blob/main/LICENSE) | [MiniForge3](https://github.com/conda-forge/miniforge)
| python | 3.13.12 | [PSF](https://docs.python.org/3.10/license.html) | [Python.org](https://www.python.org)

## Building/rebuilding containers

Expand Down
2 changes: 1 addition & 1 deletion version/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "1"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "0"
_PATCH = "1"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down
Loading