-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from open-quantum-safe/sw-update-ubuntu
Build Ubuntu CI containers on GitHub Actions
- Loading branch information
Showing
5 changed files
with
107 additions
and
176 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
name: Build Docker images | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches-ignore: 'main' | ||
|
||
jobs: | ||
ubuntu: | ||
strategy: | ||
matrix: | ||
arch: | ||
- arm64 | ||
- x86_64 | ||
distro: | ||
- focal | ||
- jammy | ||
- latest | ||
include: | ||
- arch: arm64 | ||
runner: oqs-arm64 | ||
- arch: x86_64 | ||
runner: ubuntu-latest | ||
runs-on: ${{ matrix.runner }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Build image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: false | ||
build-args: ARCH=${{ matrix.arch }} | ||
tags: openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest-${{ matrix.arch }} | ||
context: ubuntu-${{ matrix.distro }} |
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,62 @@ | ||
name: Build and push Docker images | ||
|
||
on: | ||
push: | ||
branches: 'main' | ||
|
||
jobs: | ||
ubuntu-arm64: | ||
strategy: | ||
matrix: | ||
distro: | ||
- focal | ||
- jammy | ||
- latest | ||
runs-on: oqs-arm64 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ vars.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push arm64 tag | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: true | ||
build-args: ARCH=arm64 | ||
tags: openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest-arm64 | ||
context: ubuntu-${{ matrix.distro }} | ||
|
||
ubuntu-x86_64: | ||
needs: ubuntu-arm64 | ||
strategy: | ||
matrix: | ||
distro: | ||
- focal | ||
- jammy | ||
- latest | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Login to Docker Hub | ||
if: github.ref_name == 'main' | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ vars.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Build and push x86_64 tag | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: true | ||
build-args: ARCH=x86_64 | ||
tags: openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest-x86_64 | ||
context: ubuntu-${{ matrix.distro }} | ||
- name: Create multiarch image | ||
run: | | ||
docker manifest create openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest \ | ||
--amend openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest-x86_64 \ | ||
--amend openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest-arm64 \ | ||
&& docker manifest push openquantumsafe/ci-ubuntu-${{ matrix.distro }}:latest |
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
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