Skip to content

Commit 04d003a

Browse files
committed
[CI] Don't upload build caches to S3 for Mac15 and Mac26.
The source and build caches aren't used since 4c3335e, so there is no urgent need to generate them at all. Since the Mac VMs sometimes hang for several hours at the upload step, it seems less fragile to not upload or download anything.
1 parent 2cff8d5 commit 04d003a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/root-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ jobs:
203203

204204
- name: Update build cache after push to release branch
205205
shell: bash -leo pipefail {0}
206-
if: github.event_name == 'push'
207-
run: ".github/workflows/root-ci-config/build_root.py
206+
if: ${{ github.event_name == 'push' && !matrix.platform == 'mac15' && !matrix.platform == 'mac26' }}
207+
run: ".github/workflows/root-ci-config/build_root.py
208208
--buildtype RelWithDebInfo
209209
--platform ${{ matrix.platform }}
210210
--incremental false

0 commit comments

Comments
 (0)