Skip to content

Commit 692a2fb

Browse files
authored
[MISC] Disabling Windows CI for static arrays to avoid timeouts. (#2366)
* [MISC] Disabling Windows CI for static arrays to avoid timeouts. * [MISC] Tune performance monitoring alarm thresholds.
1 parent f76181d commit 692a2fb

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/alarm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
echo "Downloaded into ${{ steps.dl_mem.outputs.download-path }}"
6363
ls -la ${{ steps.dl_mem.outputs.download-path }} || true
6464
(command -v tree >/dev/null && tree -a ${{ steps.dl_mem.outputs.download-path }}) || true
65-
65+
6666
- name: Check regressions + build outputs
6767
id: analyze
6868
env:
@@ -80,8 +80,8 @@ jobs:
8080
--max-valid-revisions 5 \
8181
--max-fetch-revisions 40 \
8282
--runtime-fps-regression-tolerance-pct 8 \
83-
--compile-time-regression-tolerance-pct 16 \
84-
--mem-regression-tolerance-pct 10 \
83+
--compile-time-regression-tolerance-pct 24 \
84+
--mem-regression-tolerance-pct 4 \
8585
--csv-runtime-fps-path /tmp/runtime_fps.csv \
8686
--csv-compile-time-path /tmp/compile_time.csv \
8787
--csv-mem-path /tmp/mem.csv \

.github/workflows/generic.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,12 @@ jobs:
4848
PYTHON_VERSION: "3.12"
4949
GS_BACKEND: "cpu"
5050
GS_ENABLE_NDARRAY: "0"
51-
- OS: "windows-2025"
52-
PYTHON_VERSION: "3.12"
53-
GS_BACKEND: "cpu"
54-
GS_ENABLE_NDARRAY: "0"
51+
# FIXME: Taichi compilation is taking so slow on Windows that running the unit tests
52+
# for static arrays takes about 400min, which is not acceptable. Disabling for now.
53+
# - OS: "windows-2025"
54+
# PYTHON_VERSION: "3.12"
55+
# GS_BACKEND: "cpu"
56+
# GS_ENABLE_NDARRAY: "0"
5557
- OS: "macos-15"
5658
PYTHON_VERSION: "3.12"
5759
GS_BACKEND: "cpu"
@@ -114,7 +116,7 @@ jobs:
114116
7z x mesa.7z -omesa
115117
mv -v mesa/x64/* /C/Windows/System32/
116118
117-
- name: Install Mesa 25 OpenGL driver (Linux)
119+
- name: Install Mesa OpenGL driver (Linux)
118120
if: startsWith(matrix.OS, 'ubuntu-')
119121
run: |
120122
for retry in {1..10}; do

0 commit comments

Comments
 (0)