Skip to content

Commit

Permalink
test dispatch
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Bozarth <[email protected]>
  • Loading branch information
ajbozarth committed Nov 21, 2024
1 parent 3efdc23 commit 354aa86
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/curl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
target: dev
tags: oqs-curl-dev

- name: Spot-test - One baseline and one hybrid QSC alg
- name: Test curl
run: |
docker run -e TEST_TIME=5 -e KEM_ALG=kyber768 -e SIG_ALG=dilithium3 oqs-curl perftest.sh
2 changes: 1 addition & 1 deletion .github/workflows/httpd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
${{ matrix.build.build-args }}
tags: oqs-curl

- name: Spot-test - One baseline and one hybrid QSC alg
- name: Test httpd using curl
run: |
docker network create httpd-test &&
docker run --network httpd-test --detach --rm --name oqs-httpd oqs-httpd &&
Expand Down
18 changes: 11 additions & 7 deletions .github/workflows/openssl3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ on:
branches: [ 'main' ]
paths: ['.github/workflows/openssl3.yml', 'openssl3/**']
workflow_dispatch:
inputs:
build_main:
description: "Build using liboqs and oqsprovider main branches"
required: false
type: boolean

env:
build-args: |
LIBOQS_TAG=main
OQSPROVIDER_TAG=main
jobs:
build:
Expand All @@ -18,12 +28,6 @@ jobs:
platform:
- linux/amd64
- linux/arm64
build:
- name: release
- name: latest
build-args: |
LIBOQS_TAG=main
OQSPROVIDER_TAG=main
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v3
Expand All @@ -42,7 +46,7 @@ jobs:
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ matrix.build.build-args }}
${{ github.event.inputs.build_main && env.build-args || null }}
tags: oqs-ossl3

- name: Spot-test - One baseline and one hybrid QSC alg
Expand Down

0 comments on commit 354aa86

Please sign in to comment.