Skip to content

Commit

Permalink
Set SEGMENT_DOWNLOAD_TIMEOUT_MINS to 3 minutes
Browse files Browse the repository at this point in the history
Re-enable bootstrap cache
  • Loading branch information
arkq committed May 11, 2023
1 parent f468151 commit dc82589
Show file tree
Hide file tree
Showing 33 changed files with 95 additions and 47 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
build_linux_gcc_debug:
Expand Down Expand Up @@ -68,7 +70,6 @@ jobs:
sysctl -w kernel.core_pattern=/tmp/cores/core.%u.%p.%t || true
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -186,7 +187,6 @@ jobs:
sysctl -w kernel.core_pattern=/tmp/cores/core.%u.%p.%t || true
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -349,7 +349,6 @@ jobs:
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -409,7 +408,6 @@ jobs:
mkdir -p ~/Library/Logs/DiagnosticReports || true
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -510,7 +508,6 @@ jobs:
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
cancel-in-progress: true

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
chef_linux:
name: Chef - Linux CI Examples
Expand All @@ -45,7 +50,6 @@ jobs:
- name: Checkout submodules
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -82,7 +86,6 @@ jobs:
- name: Checkout submodules
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform esp32
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -119,7 +122,6 @@ jobs:
- name: Checkout submodules
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform nrfconnect
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/cirque.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
cancel-in-progress: true

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
cirque:
name: Cirque
Expand Down Expand Up @@ -61,7 +66,6 @@ jobs:
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
if: ${{ !env.ACT }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/darwin-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
test_suites_chip_tool_darwin:
Expand Down Expand Up @@ -67,7 +69,6 @@ jobs:
mkdir objdir-clone || true
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
cancel-in-progress: true

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
darwin:
name: Build Darwin
Expand All @@ -47,7 +52,6 @@ jobs:
run: brew install python@3.9

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-ameba.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
ameba:
Expand All @@ -51,7 +53,6 @@ jobs:
- name: Checkout submodules
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform ameba
- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-bouffalolab.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
bouffalolab:
Expand Down Expand Up @@ -58,7 +60,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-cc13x2x7_26x2x7.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
cc26x2x7:
Expand Down Expand Up @@ -59,7 +61,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/examples-cc32xx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.number) || (github.event_name == 'workflow_dispatch' && github.run_number) || github.sha }}
cancel-in-progress: true

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
cc32xx:
name: cc32xx
Expand Down Expand Up @@ -56,7 +61,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-efr32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
efr32:
Expand Down Expand Up @@ -64,7 +66,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/examples-esp32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
esp32:
Expand Down Expand Up @@ -58,7 +60,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down Expand Up @@ -178,7 +179,6 @@ jobs:
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform esp32

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-infineon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
infineon:
Expand Down Expand Up @@ -58,7 +60,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-k32w.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
k32w:
Expand Down Expand Up @@ -60,7 +62,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-linux-arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
arm_crosscompile:
Expand Down Expand Up @@ -58,7 +60,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-linux-imx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
imx:
Expand All @@ -50,7 +52,6 @@ jobs:
run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-linux-standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
linux_standalone:
Expand Down Expand Up @@ -58,7 +60,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-mbed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
mbedos:
Expand Down Expand Up @@ -74,7 +76,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-mw320.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
mw320:
Expand Down Expand Up @@ -60,7 +62,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples-nrfconnect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ concurrency:

env:
CHIP_NO_LOG_TIMESTAMPS: true
# XXX: Workaround for https://github.com/actions/cache/issues/1141
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3

jobs:
nrfconnect:
Expand Down Expand Up @@ -75,7 +77,6 @@ jobs:
run: scripts/tools/memory/gh_sizes_environment.py "${GH_CONTEXT}"

- name: Bootstrap cache
if: false # XXX: Disabled until cache is fixed: https://github.com/actions/cache/issues/1141
uses: actions/cache@v3
timeout-minutes: 10
with:
Expand Down
Loading

0 comments on commit dc82589

Please sign in to comment.