Don't use no-asm in the Github CIs
authorMatt Caswell <matt@openssl.org>
Thu, 3 Dec 2020 15:23:00 +0000 (15:23 +0000)
committerMatt Caswell <matt@openssl.org>
Fri, 11 Dec 2020 10:54:40 +0000 (10:54 +0000)
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)

.github/workflows/ci.yml

index 9be1b74c8dfb48cd35e8db4262ae91894b1f3d22..32140d3aa3553f7aa5702003d8d484e5be758547 100644 (file)
@@ -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