Skip to content
Closed
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
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,23 @@ jobs:
build-args: ARCH=amd64
tags: openquantumsafe/ci-alpine-amd64:latest
context: alpine

debian:
strategy:
matrix:
arch:
- amd64
- armhf
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build ci-debian-bullseye-${{ matrix.arch }}:latest, do not push
uses: docker/build-push-action@v6
with:
push: false
build-args: ARCH=${{ matrix.arch }}
tags: openquantumsafe/ci-debian-bullseye-${{ matrix.arch }}:latest
context: debian-bullseye
26 changes: 26 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,32 @@ jobs:
tags: openquantumsafe/ci-alpine-amd64:latest
context: alpine

debian:
strategy:
matrix:
arch:
- amd64
- armhf
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- 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 ci-debian-bullseye-${{ matrix.arch }}:latest
uses: docker/build-push-action@v6
with:
push: true
build-args: ARCH=${{ matrix.arch }}
tags: openquantumsafe/ci-debian-bullseye-${{ matrix.arch }}:latest
context: debian-bullseye

ubuntu-arm64:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion debian-bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN dpkg --add-architecture arm64 && \
autoconf automake git libssl-dev libtool make unzip wget zlib1g-dev \
doxygen \
python3 python3-nose python3-rednose python3-pytest python3-pytest-xdist docker.io \
python3-psutil \
python3-psutil python3-requests \
maven openjdk-11-jdk \
gcc-arm-linux-gnueabi gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu qemu-user-static \
libssl-dev:arm64
Expand Down
Loading