Skip to content

Commit c91fa8c

Browse files
committed
Remove timeouts from Spack CI build steps
Build times can vary significantly depending on: - Cache hit/miss - System load - Compiler optimizations - Parallel build processes Let GitHub Actions' default job timeout (360 min) handle edge cases.
1 parent d35285e commit c91fa8c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

.github/workflows/spack.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,12 @@ jobs:
172172
. spack/share/spack/setup-env.sh
173173
# Install just the dependencies first (these are cached)
174174
spack install --show-log-on-error --only dependencies mfc~mpi~post_process
175-
timeout-minutes: 35
176175
177176
- name: Install MFC via Spack
178177
run: |
179178
. spack/share/spack/setup-env.sh
180179
# Install MFC itself (dependencies are already installed/cached)
181180
spack install --show-log-on-error mfc~mpi~post_process
182-
timeout-minutes: 10
183181
184182
- name: Test MFC Execution
185183
run: |
@@ -203,4 +201,3 @@ jobs:
203201
# Run simulation (just 1 step to verify it works)
204202
simulation
205203
echo "✓ Simulation completed"
206-
timeout-minutes: 10

0 commit comments

Comments
 (0)