Skip to content

Commit 873c7c8

Browse files
committed
ci: Add keepalive output when building
Signed-off-by: Yuya Hamamachi <yuya.hamamachi.sx@renesas.com>
1 parent e59d85b commit 873c7c8

6 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build_test_minimal_sdk.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ jobs:
2323
- name: Run build
2424
shell: bash
2525
run: |
26+
while true; do echo "[keepalive] $(date)"; sleep 60; done &
2627
./build.sh --console --sbom --rm-work --sdk
2728

.github/workflows/build_test_using_linux_dummy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- name: Run build
2424
shell: bash
2525
run: |
26+
while true; do echo "[keepalive] $(date)"; sleep 60; done &
2627
./build.sh --console --sbom --rm-work --build-rootfs-only
2728
# ./build.sh --weston --sbom --rm-work --build-rootfs-only
2829

.github/workflows/build_test_weston_sdk.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ jobs:
2323
- name: Run build
2424
shell: bash
2525
run: |
26+
while true; do echo "[keepalive] $(date)"; sleep 60; done &
2627
./build.sh --weston --sbom --rm-work --sdk
2728

.github/workflows/pull_request.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Run build
2323
shell: bash
2424
run: |
25+
while true; do echo "[keepalive] $(date)"; sleep 60; done &
2526
./build.sh --console --rm-work
2627
./build.sh --weston --rm-work
2728

.github/workflows/release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- name: Run build
2424
shell: bash
2525
run: |
26+
while true; do echo "[keepalive] $(date)"; sleep 60; done &
2627
./build.sh --console --sbom --rm-work
2728
./build.sh --weston --sbom --rm-work
2829

.github/workflows/release_nextkernel.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Run build
2323
shell: bash
2424
run: |
25+
while true; do echo "[keepalive] $(date)"; sleep 60; done &
2526
./build.sh --console --sbom --rm-work --next-kernel
2627
./build.sh --weston --sbom --rm-work --next-kernel
2728

0 commit comments

Comments
 (0)