From: Nicola Tuveri Date: Fri, 6 Aug 2021 15:37:02 +0000 (+0300) Subject: [github-ci] Import run-checker workflows from master X-Git-Tag: OpenSSL_1_1_1l~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c038f59a3d962715344168412e60be7e9785f0a;p=thirdparty%2Fopenssl.git [github-ci] Import run-checker workflows from master This commit does not include the daily run-checker workflow. Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/16252) --- diff --git a/.github/workflows/run-checker-ci.yml b/.github/workflows/run-checker-ci.yml new file mode 100644 index 00000000000..a999492207b --- /dev/null +++ b/.github/workflows/run-checker-ci.yml @@ -0,0 +1,37 @@ +--- +name: Run-checker CI for 1.1.1 +# Jobs run per pull request submission +on: [pull_request, push] +jobs: + run-checker: + strategy: + fail-fast: false + matrix: + opt: [ + no-cms, + no-ct, + no-dtls, + no-ec, + no-ec2m, + no-sock, + no-srp, + no-srtp, + enable-ssl-trace, + no-tests, + no-threads, + no-tls, + no-tls1_3, + no-ts, + no-ui, + ] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: config + run: CC=clang ./config --strict-warnings ${{ matrix.opt }} + - name: config dump + run: ./configdata.pm --dump + - name: make + run: make -s -j4 + - name: make test + run: make test diff --git a/.github/workflows/run-checker-merge.yml b/.github/workflows/run-checker-merge.yml new file mode 100644 index 00000000000..ff2d666b6da --- /dev/null +++ b/.github/workflows/run-checker-merge.yml @@ -0,0 +1,34 @@ +--- +name: Run-checker merge for 1.1.1 +# Jobs run per merge to 1.1.1 + +on: [push] +jobs: + run-checker: + strategy: + fail-fast: false + matrix: + opt: [ + enable-asan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT, + no-dgram, + no-dso, + no-dynamic-engine, + no-engine no-shared, + no-err, + no-filenames, + enable-ubsan no-asm -DPEDANTIC -DOPENSSL_SMALL_FOOTPRINT -fno-sanitize=alignment, + no-unit-test, + enable-weak-ssl-ciphers, + enable-zlib, + ] + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: config + run: CC=clang ./config --strict-warnings ${{ matrix.opt }} + - name: config dump + run: ./configdata.pm --dump + - name: make + run: make -s -j4 + - name: make test + run: make test