summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2020-12-03 15:23:00 +0000
committerMatt Caswell <matt@openssl.org>2020-12-11 10:54:40 +0000
commita67c70107c05e3088f6f2689c32dec3815abb476 (patch)
treea7a2b950eb69713c75dca64568e841619a60c2c7 /.github
parentacd3e548bc2cfd21985c98624bc78036401fd018 (diff)
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')
-rw-r--r--.github/workflows/ci.yml6
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