Skip to content

Commit

Permalink
take 2
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Bozarth <[email protected]>
  • Loading branch information
ajbozarth committed Nov 26, 2024
1 parent f0131de commit c2f271b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/openssl3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ (github.event.inputs.build_main == 'true') && env.build-args || null }}
${{ (inputs.build_main == 'true') && env.build-args || null }}
tags: oqs-ossl3

- name: Test openssl3 with provider - one baseline and one hybrid QSC algorithm
Expand All @@ -72,14 +72,14 @@ jobs:
docker run --rm --name oqs-ossl3 oqs-ossl3 sh -c "KEM_ALG=p521_frodo1344aes /opt/openssl32/bin/serverstart.sh; sleep 2; echo 'GET /' | openssl s_client -connect localhost --groups p521_frodo1344aes --CAfile /opt/openssl32/bin/CA.crt"
- name: Push Docker image to registries
if: ${{ env.push == true }}
if: env.push
uses: docker/build-push-action@v6
with:
push: true
context: openssl3
platforms: ${{ matrix.platform }}
build-args: |
MAKE_DEFINES=-j4
${{ (github.event.inputs.build_main == 'true') && env.build-args || null }}
${{ (inputs.build_main == 'true') && env.build-args || null }}
tags: |
ghcr.io/ajbozarth/openssl3:${{ inputs.release_tag || 'latest' }}

0 comments on commit c2f271b

Please sign in to comment.