-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
304db36
commit 0580d7a
Showing
2 changed files
with
75 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: github-docker | ||
|
||
# this workflow only triggers when manually started | ||
on: workflow_dispatch | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
jobs: | ||
build-dependencies: | ||
if: (github.repository == 'dealii/docker-files') | ||
name: dependencies - ${{ matrix.system.ubuntu_version }} | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
system: | ||
- ubuntu_version: "focal" | ||
dealii_version: 9.4.0-1ubuntu2~bpo20.04.1~ppa1 | ||
tag: focal-v9.5.1 | ||
- ubuntu_version: "jammy" | ||
dealii_version: 9.4.0-1ubuntu2~bpo22.04.1~ppa1 | ||
tag: jammy-v9.5.1 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push Docker image of dependencies ${{ matrix.system.ubuntu_version }} | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./dependencies/ | ||
cache-from: type=registry,ref=dealii/dependencies:${{ matrix.system.ubuntu_version }} | ||
cache-to: type=inline | ||
build-args: | | ||
IMG=${{ matrix.system.ubuntu_version }} | ||
VERSION=${{ matrix.system.dealii_version}} | ||
platforms: linux/arm64,linux/amd64 | ||
push: true | ||
tags: | | ||
ghcr.io/${{ github.repository }}:${{ matrix.system.tag }} | ||
dealii/dependencies:${{ matrix.tag }} |
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