Skip to content

Commit f3d60d8

Browse files
Speed up legacy AVX CI
1 parent 0336dd7 commit f3d60d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/linux_x86_omnibus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
runs-on:
176176
- codebuild-aws-lc-ci-github-actions-${{ github.run_id }}-${{ github.run_attempt }}
177177
image:linux-5.0
178-
instance-size:large
178+
instance-size:${{ matrix.build32 && 'xlarge' || 'large' }}
179179
strategy:
180180
fail-fast: false
181181
matrix:

tests/ci/run_legacy_avx_tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ for build_option in "${build_options_to_test[@]}"; do
2020
build_and_test ${build_option} -DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON
2121
done
2222

23-
# When Go is disabled, a different test target is produced
24-
build_and_run_minimal_test -DDISABLE_PERL=ON -DDISABLE_GO=ON -DMY_ASSEMBLER_IS_TOO_OLD_FOR_AVX=ON
25-
build_and_run_minimal_test -DDISABLE_PERL=ON -DDISABLE_GO=ON -DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON
23+
# We only need to test disabling perl here to ensure coverage against the pre-generated assembly.
24+
build_and_run_minimal_test -DDISABLE_PERL=ON -DMY_ASSEMBLER_IS_TOO_OLD_FOR_AVX=ON
25+
build_and_run_minimal_test -DDISABLE_PERL=ON -DMY_ASSEMBLER_IS_TOO_OLD_FOR_512AVX=ON

0 commit comments

Comments
 (0)