Release gpaw-24.6.0-1 #18
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
name: main | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
main: | |
name: main | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: create builder node | |
run: | | |
set -eo pipefail | |
docker buildx create --name node --platform linux/amd64,linux/arm64 | |
docker buildx use node | |
- name: build images | |
run: | | |
set -eo pipefail | |
BUILDKIT_PROGRESS=plain docker buildx bake -f docker-compose.test.yml --set '*.platform=linux/amd64,linux/arm64' --no-cache | |
- name: load the machine image | |
run: | | |
set -eo pipefail | |
docker buildx build --platform $(docker system info --format '{{.OSType}}/{{.Architecture}}') -t gpaw-openmpi:latest --load . | |
- name: test the image | |
run: | | |
set -eo pipefail | |
docker compose -f docker-compose.ci.yml up --exit-code-from gpaw |