Skip to content

Commit 3ee11bc

Browse files
committed
Disable SVE in GitHub Actions
1 parent 87d6dfc commit 3ee11bc

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

.github/workflows/build_test.yaml

+6-10
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:
@@ -113,18 +111,16 @@ jobs:
113111
pip install numpy Pillow
114112
115113
- name: Run system tests
116-
# GitHub is using Cobalt-100, which has 128-bit SVE so we cannot test sve_256 here
114+
# Disable SVE for now
117115
run: |
118116
python ./Test/astc_test_functional.py --encoder none
119117
python ./Test/astc_test_functional.py --encoder neon
120-
python ./Test/astc_test_functional.py --encoder sve_128
121118
python ./Test/astc_test_image.py --encoder none --test-set Small
122119
python ./Test/astc_test_image.py --encoder neon --test-set Small
123-
python ./Test/astc_test_image.py --encoder sve_128 --test-set Small
124120
125121
- 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
122+
# Disable SVE for now
123+
run: ctest -E "test-unit-sve_128|test-unit-sve_256" --rerun-failed --output-on-failure
128124
working-directory: build_rel
129125

130126
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)