Skip to content

Commit 0a049bd

Browse files
committed
ci: TEMP-disable Linux/macOS CI jobs to free minutes for Windows debug
1 parent f7f89fb commit 0a049bd

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ on:
1010

1111
jobs:
1212
build-push:
13-
if: github.event_name == 'push'
13+
# TEMP: disabled while debugging the windows-latest|release|--enable-thread-safety
14+
# --enable-mcsat mcsat_tuples failure. The PP_DIAG prints are now gated on
15+
# YICES_PP_TRACE so this job would pass, but we skip it to free CI minutes
16+
# for fast Windows iteration. Restore by deleting `false &&` below.
17+
if: false && github.event_name == 'push'
1418
strategy:
1519
matrix:
1620
os: [ubuntu-latest]
@@ -64,7 +68,11 @@ jobs:
6468
path-to-lcov: 'coverage.info'
6569

6670
build-pr:
67-
if: github.event_name == 'pull_request'
71+
# TEMP: disabled while debugging the windows-latest|release|--enable-thread-safety
72+
# --enable-mcsat mcsat_tuples failure. The PP_DIAG prints are now gated on
73+
# YICES_PP_TRACE so this job would pass, but we skip it to free CI minutes
74+
# for fast Windows iteration. Restore by deleting `false &&` below.
75+
if: false && github.event_name == 'pull_request'
6876
strategy:
6977
matrix:
7078
os: [ubuntu-latest, macos-latest]

0 commit comments

Comments
 (0)