Skip to content

Move CI to GitHub Actions #12

Move CI to GitHub Actions

Move CI to GitHub Actions #12

Workflow file for this run

name: ngtcp2
on:
push:
branches: [ 'main' ]
paths: ['.github/workflows/ngtcp2.yml', 'ngtcp2/**']
pull_request:
branches: [ 'main' ]
paths: ['.github/workflows/ngtcp2.yml', 'ngtcp2/**']
workflow_call:
inputs:
build_main:
description: "Build using liboqs and oqsprovider main branches"
required: false
default: false
type: boolean
release_tag:
description: "Which docker tag to push to"
required: false
type: string
workflow_dispatch:
inputs:
build_main:
description: "Build using liboqs and oqsprovider main branches"
required: false
default: false
type: boolean
release_tag:
description: "Which docker tag to push to"
required: false
type: string
env:
build-args: |
LIBOQS_TAG=main
OQSPROVIDER_TAG=main
push: ${{ github.repository == 'open-quantum-safe/oqs-demos' && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
platform:
- linux/amd64
- linux/arm64
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
if: env.push == 'true'
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the server Docker image
uses: docker/build-push-action@v6
with:
load: true
context: ngtcp2
file: ngtcp2/Dockerfile-server
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ (inputs.build_main == 'true') && env.build-args || null }}
tags: oqs-ngtcp2-server
- name: Build the client Docker image
uses: docker/build-push-action@v6
with:
load: true
context: ngtcp2
file: ngtcp2/Dockerfile-client
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ (inputs.build_main == 'true') && env.build-args || null }}
tags: oqs-ngtcp2-client
- name: Test ngtcp2 using local docker network
run: |
docker network create ngtcp2-test &&
docker run --network ngtcp2-test --detach --name oqs-ngtcp2server oqs-ngtcp2-server &&
docker run --network ngtcp2-test --name oqs-ngtcp2client oqs-ngtcp2-client sh -c 'qtlsclient --exit-on-first-stream-close --groups kyber512 oqs-ngtcp2server 6000' &&
docker logs oqs-ngtcp2client 2>&1 | grep "QUIC handshake has been confirmed"
- name: Push server Docker image to registries
if: env.push == 'true'
uses: docker/build-push-action@v6
with:
push: true
context: ngtcp2
file: ngtcp2/Dockerfile-server
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ (inputs.build_main == 'true') && env.build-args || null }}
tags: |
ghcr.io/${{ github.repository_owner }}/ngtcp2-server:${{ inputs.release_tag || 'latest' }}
openquantumsafe/ngtcp2-server:${{ inputs.release_tag || 'latest' }}
- name: Push client Docker image to registries
if: env.push == 'true'
uses: docker/build-push-action@v6
with:
push: true
context: ngtcp2
file: ngtcp2/Dockerfile-client
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ (inputs.build_main == 'true') && env.build-args || null }}
tags: |
ghcr.io/${{ github.repository_owner }}/ngtcp2-client:${{ inputs.release_tag || 'latest' }}
openquantumsafe/ngtcp2-client:${{ inputs.release_tag || 'latest' }}