Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/build-daily-no-build-cache-no-retries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build (daily no cache no retries)

on:
schedule:
# daily at 16:48 UTC
- cron: "48 16 * * *"
workflow_dispatch:

jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
max-test-retries: 0
no-build-cache: true

test-latest-deps:
uses: ./.github/workflows/reusable-test-latest-deps.yml
with:
max-test-retries: 0
no-build-cache: true

test-indy:
uses: ./.github/workflows/reusable-test-indy.yml
with:
max-test-retries: 0
no-build-cache: true

# intentionally not using the notification workflow because currently this build fails
# every day due to the lack of retries and so being notified every day is just noise
5 changes: 1 addition & 4 deletions .github/workflows/build-daily-no-build-cache.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build (daily --no-build-cache)
name: Build (daily no cache)

on:
schedule:
Expand All @@ -10,19 +10,16 @@ jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
max-test-retries: 0
no-build-cache: true

test-latest-deps:
uses: ./.github/workflows/reusable-test-latest-deps.yml
with:
max-test-retries: 0
no-build-cache: true

test-indy:
uses: ./.github/workflows/reusable-test-indy.yml
with:
max-test-retries: 0
no-build-cache: true

# muzzle is not included here because it doesn't use gradle cache anyway and so is already covered
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/build-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,12 @@ on:
jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
max-test-retries: 0

test-latest-deps:
uses: ./.github/workflows/reusable-test-latest-deps.yml
with:
max-test-retries: 0

test-indy:
uses: ./.github/workflows/reusable-test-indy.yml
with:
max-test-retries: 0

muzzle:
uses: ./.github/workflows/reusable-muzzle.yml
Expand Down
Loading