Skip to content

Commit

Permalink
further fixup to #298
Browse files Browse the repository at this point in the history
  • Loading branch information
baentsch committed Nov 24, 2024
1 parent 22a8a8b commit 8012f19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,9 @@ jobs:
name: Test httpd using curl (dev) (main/master)
command: |
docker network create httpd-test-main &&
docker run --network httpd-test-main --detach --rm --name oqs-httpd oqs-httpd-img-main &&
docker run --network httpd-test-main --detach --rm --name oqs-httpd2 oqs-httpd-img-main &&
sleep 2 &&
docker run --network httpd-test-main oqs-curl-main curl -k https://oqs-httpd:4433 --curves kyber768
docker run --network httpd-test-main oqs-curl-main curl -k https://oqs-httpd2:4433 --curves kyber768
- when:
condition:
or:
Expand Down
3 changes: 2 additions & 1 deletion httpd/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ ARG APRU_VERSION=1.6.3
ARG APR_MIRROR="https://dlcdn.apache.org"

# Define the degree of parallelism when building the image; leave the number away only if you know what you are doing
ARG MAKE_DEFINES="-j 2"
# A CI system with less than 4 cores should be avoided
ARG MAKE_DEFINES="-j 4"


FROM alpine:${ALPINE_VERSION} as intermediate
Expand Down

0 comments on commit 8012f19

Please sign in to comment.