-
Notifications
You must be signed in to change notification settings - Fork 2k
130 lines (123 loc) · 4.71 KB
/
custard-run-dev.yaml
File metadata and controls
130 lines (123 loc) · 4.71 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: (experimental / dev) Custard run
on:
# Run tests when a pull request is created or updated.
# This allows to run tests from forked repos (after reviewer's approval).
workflow_run:
workflows:
- Custard CI # .github/workflows/custard-ci.yaml
types:
- in_progress
# Run tests again as validation when a PR merge into main.
push:
branches:
- main
# To do manual runs through the Actions UI.
workflow_dispatch:
inputs:
run-all:
description: Run all tests
type: boolean
default: false
paths:
description: Comma separated packages to test
type: string
ref:
description: Branch, tag, or commit SHA to run tests on
type: string
default: main
jobs:
affected:
uses: GoogleCloudPlatform/cloud-samples-tools/.github/workflows/affected.yaml@v0.2.3
permissions:
statuses: write
with:
head-sha: ${{ github.event.workflow_run.head_sha || inputs.ref || github.sha }}
config-file: .github/config/nodejs-dev.jsonc
paths: ${{ (inputs.run-all && '.') || inputs.paths || '' }}
check-name: (experimental / dev) Custard CI
create-check-if: ${{ !!github.event.workflow_run }}
test:
if: needs.affected.outputs.paths != '[]'
needs: affected
runs-on: ubuntu-latest
timeout-minutes: 120 # 2 hours hard limit
permissions:
statuses: write
strategy:
fail-fast: false
matrix:
path: ${{ needs.affected.outputs.paths }}
continue-on-error: true
env:
GOOGLE_SAMPLES_PROJECT: long-door-651
GOOGLE_SERVICE_ACCOUNT: kokoro-system-test@long-door-651.iam.gserviceaccount.com
steps:
- name: Check queued
uses: GoogleCloudPlatform/cloud-samples-tools/actions/steps/create-check@v0.2.3
id: queued
with:
sha: ${{ github.event.workflow_run.head_sha || inputs.ref || github.sha }}
name: (experimental / dev) Custard CI / ${{ github.job }} (${{ matrix.path }})
job-name: ${{ github.job }} (${{ matrix.path }})
if: ${{ !!github.event.workflow_run }}
- name: Setup Custard
uses: GoogleCloudPlatform/cloud-samples-tools/actions/steps/setup-custard@v0.2.3
with:
path: ${{ matrix.path }}
ci-setup: ${{ toJson(fromJson(needs.affected.outputs.ci-setups)[matrix.path]) }}
project-id: ${{ env.GOOGLE_SAMPLES_PROJECT }}
workload-identity-provider: projects/1046198160504/locations/global/workloadIdentityPools/github-actions-pool/providers/github-actions-provider
service-account: ${{ env.GOOGLE_SERVICE_ACCOUNT }}
- name: Check in_progress
uses: GoogleCloudPlatform/cloud-samples-tools/actions/steps/update-check@v0.2.3
id: in_progress
with:
check: ${{ steps.queued.outputs.check }}
status: in_progress
- name: Run tests for ${{ matrix.path }}
run: |
timeout ${{ fromJson(needs.affected.outputs.ci-setups)[matrix.path].timeout-minutes }}m \
make test dir=${{ matrix.path }}
- name: Check success
uses: GoogleCloudPlatform/cloud-samples-tools/actions/steps/update-check@v0.2.3
with:
check: ${{ steps.in_progress.outputs.check }}
status: success
- name: Check failure
uses: GoogleCloudPlatform/cloud-samples-tools/actions/steps/update-check@v0.2.3
if: failure()
with:
check: ${{ steps.in_progress.outputs.check }}
status: failure
# - name: Upload test results for FlakyBot workflow
# if: github.event.action == 'schedule' && always() # always() submits logs even if tests fail
# uses: actions/upload-artifact@v4
# with:
# name: test-results
# path: ${{ matrix.path }}/${{ github.run_id }}_sponge_log.xml
# retention-days: 1
done:
needs: [affected, test]
if: always()
runs-on: ubuntu-latest
permissions:
statuses: write
steps:
- name: Check success
uses: GoogleCloudPlatform/cloud-samples-tools/actions/steps/update-check@v0.2.3
with:
check: ${{ needs.affected.outputs.check }}
status: success