Skip to content

Commit 96fc614

Browse files
committed
Skip HostImage actions on PR and merge pushes
The workflow is not a required check (it actually always fails or times out), so there is no need to run it on branches being evaluated for merging. Disable the job that is always timing out if there is no build error. The job always runs 6 hours: https://github.com/google/android-cuttlefish/actions/workflows/host-image-ci.yml
1 parent 93b3ed5 commit 96fc614

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/host-image-ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@
1818

1919
name: HostImage
2020

21-
on: [push]
21+
on:
22+
push:
23+
branches:
24+
- main
25+
- version-*-dev
2226

2327
jobs:
2428
build-installer-iso-job:
@@ -43,6 +47,8 @@ jobs:
4347
path: tools/cuttlefish-host-image-installer/preseed-mini.iso.xz
4448

4549
build-cuttlefish-deb-job:
50+
# always timing out, disable job until it is debugged
51+
if: false
4652
uses: ./.github/workflows/reusable-build.yaml
4753

4854
build-metapackage-deb-job:

0 commit comments

Comments
 (0)