File tree Expand file tree Collapse file tree 2 files changed +61
-1
lines changed
Expand file tree Collapse file tree 2 files changed +61
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Nightlies (crl-release-26.2)
2+
3+ on :
4+ schedule :
5+ - cron : ' 30 10 * * * ' # 10:30am UTC daily
6+ workflow_dispatch :
7+
8+ env :
9+ BRANCH : crl-release-26.2
10+
11+ jobs :
12+ resolve-sha :
13+ runs-on : ubuntu-latest
14+ outputs :
15+ # This output only exists so we can interpolate it.
16+ branch : ${{ steps.get_sha.outputs.branch }}
17+ sha : ${{ steps.get_sha.outputs.sha }}
18+ steps :
19+ - name : Checkout repo
20+ uses : actions/checkout@v4
21+ with :
22+ fetch-depth : 0
23+
24+ - name : Get SHA for ${{ env.BRANCH }}
25+ id : get_sha
26+ run : |
27+ echo "branch=$BRANCH" >> "$GITHUB_OUTPUT"
28+ echo "sha=$(git rev-parse origin/$BRANCH)" >> "$GITHUB_OUTPUT"
29+
30+ tests :
31+ needs : resolve-sha
32+ uses : ./.github/workflows/tests.yaml
33+ with :
34+ sha : ${{ needs.resolve-sha.outputs.sha }}
35+ file_issue_branch : ${{ needs.resolve-sha.outputs.branch }}
36+ go_version : 1.25
37+
38+ s390x :
39+ needs : resolve-sha
40+ uses : ./.github/workflows/s390x.yaml
41+ with :
42+ sha : ${{ needs.resolve-sha.outputs.sha }}
43+ file_issue_branch : ${{ needs.resolve-sha.outputs.branch }}
44+ go_version : 1.25
45+
46+ stress :
47+ needs : resolve-sha
48+ uses : ./.github/workflows/stress.yaml
49+ with :
50+ sha : ${{ needs.resolve-sha.outputs.sha }}
51+ file_issue_branch : ${{ needs.resolve-sha.outputs.branch }}
52+ go_version : 1.25
53+
54+ instrumented :
55+ needs : resolve-sha
56+ uses : ./.github/workflows/instrumented.yaml
57+ with :
58+ sha : ${{ needs.resolve-sha.outputs.sha }}
59+ file_issue_branch : ${{ needs.resolve-sha.outputs.branch }}
60+ go_version : 1.25
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ crossversion-meta:
8181
8282.PHONY : stress-crossversion
8383stress-crossversion :
84- STRESS=1 ./scripts/run-crossversion-meta.sh crl-release-24.3 crl-release-25.1 crl-release-25.2 crl-release-25.3 crl-release-25.4 crl-release-26.1 master
84+ STRESS=1 ./scripts/run-crossversion-meta.sh crl-release-24.3 crl-release-25.1 crl-release-25.2 crl-release-25.3 crl-release-25.4 crl-release-26.1 crl-release-26.2 master
8585
8686.PHONY : test-s390x-qemu
8787test-s390x-qemu : TAGS += slowbuild
You can’t perform that action at this time.
0 commit comments