summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2022-10-12 16:03:08 +1000
committerHugo Landau <hlandau@openssl.org>2022-10-18 12:19:23 +0100
commit846975f367f75f3503b44c12e49d980dca181647 (patch)
tree13dd5a013da371a160a498b21af434633f421b56 /.github
parent7d3600a6c906c5f4cf81db95aec7b58b9d018c49 (diff)
Fix sctp compile errors
Fixes #19371 running config with 'enable-sctp' gave compiler errors. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19398)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/run-checker-daily.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/run-checker-daily.yml b/.github/workflows/run-checker-daily.yml
index da5105c8f3..b15ebfd931 100644
--- a/.github/workflows/run-checker-daily.yml
+++ b/.github/workflows/run-checker-daily.yml
@@ -98,7 +98,7 @@ jobs:
no-ripemd,
no-rmd160,
no-scrypt,
- no-sctp,
+ enable-sctp,
no-secure-memory,
no-seed,
no-shared,
@@ -137,6 +137,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
+ - name: Install Dependencies for sctp option
+ run: |
+ sudo apt-get update
+ sudo apt-get -yq install lksctp-tools libsctp-dev
+ sudo sysctl -w net.sctp.auth_enable=1
+ if: matrix.opt == 'enable-sctp'
- name: config
run: CC=clang ./config --banner=Configured --strict-warnings ${{ matrix.opt }}
- name: config dump