Skip to content

Commit 446942b

Browse files
committed
Disable SVE in GitHub Actions
1 parent f987329 commit 446942b

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/build_test.yaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,16 @@ jobs:
5555
pip install numpy Pillow
5656
5757
- name: Run system tests
58-
# GitHub is using Cobalt-100, which has 128-bit SVE so we cannot test sve_256 here
58+
# Disable SVE for now
5959
run: |
6060
python ./Test/astc_test_functional.py --encoder none
6161
python ./Test/astc_test_functional.py --encoder neon
62-
python ./Test/astc_test_functional.py --encoder sve_128
6362
python ./Test/astc_test_image.py --encoder none --test-set Small
6463
python ./Test/astc_test_image.py --encoder neon --test-set Small
65-
python ./Test/astc_test_image.py --encoder sve_128 --test-set Small
6664
6765
- name: Run unit tests
68-
# GitHub is using Cobalt-100, which has 128-bit SVE so we cannot test sve_256 here
69-
run: ctest -E test-unit-sve_256 --rerun-failed --output-on-failure
66+
# Disable SVE for now
67+
run: ctest -E test-unit-sve_128|test-unit-sve_256 --rerun-failed --output-on-failure
7068
working-directory: build_rel
7169

7270
build-ubuntu-arm64-gcc:
@@ -123,8 +121,8 @@ jobs:
123121
python ./Test/astc_test_image.py --encoder sve_128 --test-set Small
124122
125123
- name: Run unit tests
126-
# GitHub is using Cobalt-100, which has 128-bit SVE so we cannot test sve_256 here
127-
run: ctest -E test-unit-sve_256 --rerun-failed --output-on-failure
124+
# Disable SVE for now
125+
run: ctest -E test-unit-sve_128|test-unit-sve_256 --rerun-failed --output-on-failure
128126
working-directory: build_rel
129127

130128
build-ubuntu-x64-clang:

.github/workflows/post_weekly_release.yaml

+1-3
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,10 @@ jobs:
101101
pip install numpy Pillow
102102
103103
- name: Run system tests
104-
# GitHub is using Cobalt-100, which has 128-bit SVE so we cannot test sve_256 here
104+
# Disable SVE testing for now
105105
run: |
106106
python ./Test/astc_test_functional.py --encoder neon
107-
python ./Test/astc_test_functional.py --encoder sve_128
108107
python ./Test/astc_test_image.py --encoder neon --test-set Small
109-
python ./Test/astc_test_image.py --encoder sve_128 --test-set Small
110108
111109
build-ubuntu-x64:
112110
name: Ubuntu x64

0 commit comments

Comments
 (0)