diff options
author | Matt Caswell <matt@openssl.org> | 2020-12-03 16:23:00 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-12-11 11:54:40 +0100 |
commit | a67c70107c05e3088f6f2689c32dec3815abb476 (patch) | |
tree | a7a2b950eb69713c75dca64568e841619a60c2c7 /.github/workflows | |
parent | Add fips self tests for all included kdf (diff) | |
download | openssl-a67c70107c05e3088f6f2689c32dec3815abb476.tar.xz openssl-a67c70107c05e3088f6f2689c32dec3815abb476.zip |
Don't use no-asm in the Github CIs
no-asm has proven to be too slow, therefore we don't use it in the Github
CI builds and instead rely on it being covered by run-checker.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
(Merged from https://github.com/openssl/openssl/pull/13607)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9be1b74c8d..32140d3aa3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: config - run: ./config --debug no-asm enable-asan enable-ubsan enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 && perl configdata.pm --dump + run: ./config --debug enable-asan enable-ubsan enable-rc5 enable-md2 enable-ec_nistp_64_gcc_128 && perl configdata.pm --dump - name: make run: make -s -j4 - name: make test @@ -69,12 +69,12 @@ jobs: - name: make test run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} - legacy_and_no-asm: + legacy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: config - run: ./config no-asm -Werror --debug no-afalgeng no-shared enable-crypto-mdebug enable-rc5 enable-md2 && perl configdata.pm --dump + run: ./config -Werror --debug no-afalgeng no-shared enable-crypto-mdebug enable-rc5 enable-md2 && perl configdata.pm --dump - name: make run: make -s -j4 - name: make test |