Disable ec2m when ec is disabled #462
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Run-checker merge for 8.3 | |
# Jobs run per merge to 8.3 | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
run-checker: | |
strategy: | |
fail-fast: false | |
matrix: | |
opt: [ | |
enable-asan enable-ubsan 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@v3 | |
- 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 |