[openssl] master update

Matt Caswell matt at openssl.org
Fri Dec 11 10:55:25 UTC 2020


The branch master has been updated
       via  a67c70107c05e3088f6f2689c32dec3815abb476 (commit)
      from  acd3e548bc2cfd21985c98624bc78036401fd018 (commit)


- Log -----------------------------------------------------------------
commit a67c70107c05e3088f6f2689c32dec3815abb476
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Dec 3 15:23:00 2020 +0000

    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 at fedoraproject.org>
    Reviewed-by: David von Oheimb <david.von.oheimb at siemens.com>
    (Merged from https://github.com/openssl/openssl/pull/13607)

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/ci.yml | 6 +++---
 1 file 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 at 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 at 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


More information about the openssl-commits mailing list