-
Notifications
You must be signed in to change notification settings - Fork 917
54 lines (46 loc) · 1.4 KB
/
build-daily-no-build-cache.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Build (daily --no-build-cache)
on:
schedule:
# daily at 4:48 UTC
- cron: "48 4 * * *"
workflow_dispatch:
permissions:
contents: read
jobs:
common:
uses: ./.github/workflows/build-common.yml
with:
no-build-cache: true
secrets:
FLAKY_TEST_REPORTER_ACCESS_KEY: ${{ secrets.FLAKY_TEST_REPORTER_ACCESS_KEY }}
test-latest-deps:
uses: ./.github/workflows/reusable-test-latest-deps.yml
with:
no-build-cache: true
secrets:
FLAKY_TEST_REPORTER_ACCESS_KEY: ${{ secrets.FLAKY_TEST_REPORTER_ACCESS_KEY }}
test-indy:
uses: ./.github/workflows/reusable-test-indy.yml
with:
no-build-cache: true
secrets:
FLAKY_TEST_REPORTER_ACCESS_KEY: ${{ secrets.FLAKY_TEST_REPORTER_ACCESS_KEY }}
# muzzle is not included here because it doesn't use gradle cache anyway and so is already covered
# by the normal daily build
# markdown-link-check and misspell-check are not included here because they don't use gradle cache
# anyway and so are already covered by the normal daily build
workflow-notification:
permissions:
contents: read
issues: write
needs:
- common
- test-latest-deps
if: always()
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: >-
${{
needs.common.result == 'success' &&
needs.test-latest-deps.result == 'success'
}}