diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 19f13015af371b..8dfc7086417d2d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/chef.yaml b/.github/workflows/chef.yaml index cbb0c47e4d879e..42dba7ca4485aa 100644 --- a/.github/workflows/chef.yaml +++ b/.github/workflows/chef.yaml @@ -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 @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index 6b80ce794e1da5..ba6938efb7e19e 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -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 @@ -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 }} diff --git a/.github/workflows/darwin-tests.yaml b/.github/workflows/darwin-tests.yaml index 8c577813190631..02c4f58af64b89 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -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: @@ -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: diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index 3c5f1940b03962..7c2a6abd2410d5 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -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 @@ -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: diff --git a/.github/workflows/examples-ameba.yaml b/.github/workflows/examples-ameba.yaml index 20b2d0386ebb78..175261cef97618 100644 --- a/.github/workflows/examples-ameba.yaml +++ b/.github/workflows/examples-ameba.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-bouffalolab.yaml b/.github/workflows/examples-bouffalolab.yaml index b05bae0a4cc896..e548aa4259b929 100644 --- a/.github/workflows/examples-bouffalolab.yaml +++ b/.github/workflows/examples-bouffalolab.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-cc13x2x7_26x2x7.yaml b/.github/workflows/examples-cc13x2x7_26x2x7.yaml index 3aad35246a6915..aaeaf094910373 100644 --- a/.github/workflows/examples-cc13x2x7_26x2x7.yaml +++ b/.github/workflows/examples-cc13x2x7_26x2x7.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-cc32xx.yaml b/.github/workflows/examples-cc32xx.yaml index 47201868737d0b..f31cf1e8a20c28 100644 --- a/.github/workflows/examples-cc32xx.yaml +++ b/.github/workflows/examples-cc32xx.yaml @@ -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 @@ -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: diff --git a/.github/workflows/examples-efr32.yaml b/.github/workflows/examples-efr32.yaml index dec5ed2676735a..ee4f04e8143846 100644 --- a/.github/workflows/examples-efr32.yaml +++ b/.github/workflows/examples-efr32.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-esp32.yaml b/.github/workflows/examples-esp32.yaml index 80f90bc387a629..637c797fe5ad90 100644 --- a/.github/workflows/examples-esp32.yaml +++ b/.github/workflows/examples-esp32.yaml @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/examples-infineon.yaml b/.github/workflows/examples-infineon.yaml index 5ddd750fb02c4d..b48aafbf4937da 100644 --- a/.github/workflows/examples-infineon.yaml +++ b/.github/workflows/examples-infineon.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-k32w.yaml b/.github/workflows/examples-k32w.yaml index 88055026caf567..f71f3f26f1ae61 100644 --- a/.github/workflows/examples-k32w.yaml +++ b/.github/workflows/examples-k32w.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-linux-arm.yaml b/.github/workflows/examples-linux-arm.yaml index f797d0579e85cf..b8af253b4923aa 100644 --- a/.github/workflows/examples-linux-arm.yaml +++ b/.github/workflows/examples-linux-arm.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-linux-imx.yaml b/.github/workflows/examples-linux-imx.yaml index 83f08e1f6903fe..3dd30ed119a7a0 100644 --- a/.github/workflows/examples-linux-imx.yaml +++ b/.github/workflows/examples-linux-imx.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-linux-standalone.yaml b/.github/workflows/examples-linux-standalone.yaml index fb70e1c8093b0b..f80a4691a7d56f 100644 --- a/.github/workflows/examples-linux-standalone.yaml +++ b/.github/workflows/examples-linux-standalone.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-mbed.yaml b/.github/workflows/examples-mbed.yaml index adcd6374befb1d..5f04e7eac1a26d 100644 --- a/.github/workflows/examples-mbed.yaml +++ b/.github/workflows/examples-mbed.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-mw320.yaml b/.github/workflows/examples-mw320.yaml index 6475d71e9764c8..9d64805bcb3b64 100755 --- a/.github/workflows/examples-mw320.yaml +++ b/.github/workflows/examples-mw320.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-nrfconnect.yaml b/.github/workflows/examples-nrfconnect.yaml index f2e5882e14c356..7f66809a2d9138 100644 --- a/.github/workflows/examples-nrfconnect.yaml +++ b/.github/workflows/examples-nrfconnect.yaml @@ -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: @@ -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: diff --git a/.github/workflows/examples-openiotsdk.yaml b/.github/workflows/examples-openiotsdk.yaml index 14045ddf141a55..e34b079f2b81d7 100644 --- a/.github/workflows/examples-openiotsdk.yaml +++ b/.github/workflows/examples-openiotsdk.yaml @@ -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: openiotsdk: name: Open IoT SDK examples building @@ -60,7 +65,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: diff --git a/.github/workflows/examples-qpg.yaml b/.github/workflows/examples-qpg.yaml index cc4215bf0c8de6..4d929fb36c6b3e 100644 --- a/.github/workflows/examples-qpg.yaml +++ b/.github/workflows/examples-qpg.yaml @@ -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: qpg: @@ -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: diff --git a/.github/workflows/examples-telink.yaml b/.github/workflows/examples-telink.yaml index 4d24970dcbf487..cf0317c61c190c 100644 --- a/.github/workflows/examples-telink.yaml +++ b/.github/workflows/examples-telink.yaml @@ -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: telink: @@ -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: diff --git a/.github/workflows/examples-tizen.yaml b/.github/workflows/examples-tizen.yaml index 31f5f3c1f4fa6f..dc6240fe45cbd6 100644 --- a/.github/workflows/examples-tizen.yaml +++ b/.github/workflows/examples-tizen.yaml @@ -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: tizen: @@ -53,7 +55,6 @@ jobs: run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform tizen - 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: diff --git a/.github/workflows/full-android.yaml b/.github/workflows/full-android.yaml index 24e86051c580b0..57160e210dbc84 100644 --- a/.github/workflows/full-android.yaml +++ b/.github/workflows/full-android.yaml @@ -24,6 +24,8 @@ concurrency: env: CHIP_NO_LOG_TIMESTAMPS: true + # XXX: Workaround for https://github.com/actions/cache/issues/1141 + SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3 jobs: full_android: @@ -64,7 +66,6 @@ jobs: run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform android - 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: diff --git a/.github/workflows/fuzzing-build.yaml b/.github/workflows/fuzzing-build.yaml index d1584c7962bcaf..68b62b88d87e12 100644 --- a/.github/workflows/fuzzing-build.yaml +++ b/.github/workflows/fuzzing-build.yaml @@ -24,6 +24,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_fuzzing: @@ -55,7 +57,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: @@ -116,7 +117,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: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9f5bb5271b5cb4..fef2d3e1c8dabf 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,6 +23,10 @@ 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: + # XXX: Workaround for https://github.com/actions/cache/issues/1141 + SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3 + jobs: code-lints: runs-on: ubuntu-latest @@ -56,7 +60,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: diff --git a/.github/workflows/qemu.yaml b/.github/workflows/qemu.yaml index 818a6d5a5176c2..b8d68f4a3a243e 100644 --- a/.github/workflows/qemu.yaml +++ b/.github/workflows/qemu.yaml @@ -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: @@ -56,7 +58,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: @@ -121,7 +122,6 @@ jobs: run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform tizen - 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: diff --git a/.github/workflows/release_artifacts.yaml b/.github/workflows/release_artifacts.yaml index 90e95ea4dbcc96..314600d3e588ff 100644 --- a/.github/workflows/release_artifacts.yaml +++ b/.github/workflows/release_artifacts.yaml @@ -21,6 +21,11 @@ on: description: Release Tag required: true +env: + CHIP_NO_LOG_TIMESTAMPS: true + # XXX: Workaround for https://github.com/actions/cache/issues/1141 + SEGMENT_DOWNLOAD_TIMEOUT_MINS: 3 + jobs: esp32: name: ESP32 @@ -44,7 +49,6 @@ jobs: ref: "${{ github.event.inputs.releaseTag }}" - 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: @@ -100,7 +104,6 @@ jobs: ref: "${{ github.event.inputs.releaseTag }}" - 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: diff --git a/.github/workflows/smoketest-android.yaml b/.github/workflows/smoketest-android.yaml index 5f60d1e29acd45..de1d5ab89e8cfb 100644 --- a/.github/workflows/smoketest-android.yaml +++ b/.github/workflows/smoketest-android.yaml @@ -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: android: @@ -55,7 +57,6 @@ jobs: run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform android - 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: diff --git a/.github/workflows/smoketest-darwin.yaml b/.github/workflows/smoketest-darwin.yaml index b763a95329c091..0ab19f6dd92d44 100644 --- a/.github/workflows/smoketest-darwin.yaml +++ b/.github/workflows/smoketest-darwin.yaml @@ -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: Smoke Run - Darwin @@ -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: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 7f9bb660543528..67a6dfe73db609 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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_linux: @@ -81,7 +83,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: @@ -338,7 +339,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: @@ -461,7 +461,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: @@ -549,7 +548,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: @@ -723,7 +721,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: diff --git a/.github/workflows/zap_regeneration.yaml b/.github/workflows/zap_regeneration.yaml index b26874a3ae68a8..22cdb0430bc494 100644 --- a/.github/workflows/zap_regeneration.yaml +++ b/.github/workflows/zap_regeneration.yaml @@ -21,6 +21,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: zap_regeneration: name: ZAP Regeneration @@ -48,7 +53,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: diff --git a/.github/workflows/zap_templates.yaml b/.github/workflows/zap_templates.yaml index fa11b447059eaf..60513c863eec92 100644 --- a/.github/workflows/zap_templates.yaml +++ b/.github/workflows/zap_templates.yaml @@ -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: zap_templates: name: ZAP templates generation @@ -49,7 +54,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: