-
Notifications
You must be signed in to change notification settings - Fork 324
3636 lines (3303 loc) · 110 KB
/
ci-presubmit.yaml
File metadata and controls
3636 lines (3303 loc) · 110 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2025 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.
# Generated by dev/tasks/generate-github-actions. DO NOT EDIT.
name: ci-presubmit
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: ["master", "release-*"]
merge_group:
types: [checks_requested]
branches: ["master", "release-*"]
jobs:
capture-pprof:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/capture-pprof"
run: |
./dev/ci/presubmits/capture-pprof
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-capture-pprof
path: /tmp/artifacts/
fuzz-roundtrippers:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/fuzz-roundtrippers"
run: |
./dev/ci/presubmits/fuzz-roundtrippers
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-fuzz-roundtrippers
path: /tmp/artifacts/
golangci-lint:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Free up disk space
run: dev/tasks/free-disk-space-on-github-actions-runner
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.7.1
args: --timeout=10m
license-lint:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/license-lint"
run: |
./dev/ci/presubmits/license-lint
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-license-lint
path: /tmp/artifacts/
run-linters:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/run-linters"
run: |
./dev/ci/presubmits/run-linters
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-run-linters
path: /tmp/artifacts/
smoketest-with-kind:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/smoketest-with-kind"
run: |
./dev/ci/presubmits/smoketest-with-kind
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-smoketest-with-kind
path: /tmp/artifacts/
test-mockgcp:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- uses: 'google-github-actions/setup-gcloud@v2'
with:
version: '546.0.0'
install_components: 'alpha,beta'
- name: "Run dev/ci/presubmits/test-mockgcp"
run: |
./dev/ci/presubmits/test-mockgcp
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-test-mockgcp
path: /tmp/artifacts/
test-pause:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/test-pause"
run: |
./dev/ci/presubmits/test-pause
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-test-pause
path: /tmp/artifacts/
tests-e2e-direct-iam:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-direct-iam"
run: |
./dev/ci/presubmits/tests-e2e-direct-iam
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-direct-iam
path: /tmp/artifacts/
tests-e2e-fixtures:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures"
run: |
./dev/ci/presubmits/tests-e2e-fixtures
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures
path: /tmp/artifacts/
tests-e2e-fixtures-accesscontextmanager:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-accesscontextmanager"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-accesscontextmanager
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-accesscontextmanager
path: /tmp/artifacts/
tests-e2e-fixtures-aiplatform:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-aiplatform"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-aiplatform
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-aiplatform
path: /tmp/artifacts/
tests-e2e-fixtures-alloydb:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-alloydb"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-alloydb
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-alloydb
path: /tmp/artifacts/
tests-e2e-fixtures-analytics:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-analytics"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-analytics
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-analytics
path: /tmp/artifacts/
tests-e2e-fixtures-apigateway:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-apigateway"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-apigateway
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-apigateway
path: /tmp/artifacts/
tests-e2e-fixtures-apigee:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-apigee"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-apigee
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-apigee
path: /tmp/artifacts/
tests-e2e-fixtures-apikeys:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-apikeys"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-apikeys
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-apikeys
path: /tmp/artifacts/
tests-e2e-fixtures-appengine:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-appengine"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-appengine
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-appengine
path: /tmp/artifacts/
tests-e2e-fixtures-apphub:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-apphub"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-apphub
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-apphub
path: /tmp/artifacts/
tests-e2e-fixtures-artifactregistry:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-artifactregistry"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-artifactregistry
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-artifactregistry
path: /tmp/artifacts/
tests-e2e-fixtures-asset:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-asset"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-asset
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-asset
path: /tmp/artifacts/
tests-e2e-fixtures-assuredworkloads:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-assuredworkloads"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-assuredworkloads
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-assuredworkloads
path: /tmp/artifacts/
tests-e2e-fixtures-backupdr:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-backupdr"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-backupdr
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-backupdr
path: /tmp/artifacts/
tests-e2e-fixtures-batch:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-batch"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-batch
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-batch
path: /tmp/artifacts/
tests-e2e-fixtures-beyondcorp:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-beyondcorp"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-beyondcorp
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-beyondcorp
path: /tmp/artifacts/
tests-e2e-fixtures-bigquery:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigquery"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigquery
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigquery
path: /tmp/artifacts/
tests-e2e-fixtures-bigqueryanalyticshub:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigqueryanalyticshub"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigqueryanalyticshub
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigqueryanalyticshub
path: /tmp/artifacts/
tests-e2e-fixtures-bigquerybiglake:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigquerybiglake"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigquerybiglake
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigquerybiglake
path: /tmp/artifacts/
tests-e2e-fixtures-bigqueryconnection:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigqueryconnection"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigqueryconnection
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigqueryconnection
path: /tmp/artifacts/
tests-e2e-fixtures-bigquerydatapolicy:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigquerydatapolicy"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigquerydatapolicy
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigquerydatapolicy
path: /tmp/artifacts/
tests-e2e-fixtures-bigquerydatatransfer:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigquerydatatransfer"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigquerydatatransfer
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigquerydatatransfer
path: /tmp/artifacts/
tests-e2e-fixtures-bigqueryreservation:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigqueryreservation"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigqueryreservation
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigqueryreservation
path: /tmp/artifacts/
tests-e2e-fixtures-bigtable:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-bigtable"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-bigtable
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-bigtable
path: /tmp/artifacts/
tests-e2e-fixtures-billing:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-billing"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-billing
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-billing
path: /tmp/artifacts/
tests-e2e-fixtures-billingbudgets:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-billingbudgets"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-billingbudgets
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-billingbudgets
path: /tmp/artifacts/
tests-e2e-fixtures-binaryauthorization:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-binaryauthorization"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-binaryauthorization
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-binaryauthorization
path: /tmp/artifacts/
tests-e2e-fixtures-certificatemanager:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-certificatemanager"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-certificatemanager
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-certificatemanager
path: /tmp/artifacts/
tests-e2e-fixtures-cloudasset:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-cloudasset"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-cloudasset
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-cloudasset
path: /tmp/artifacts/
tests-e2e-fixtures-cloudbuild:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-cloudbuild"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-cloudbuild
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-cloudbuild
path: /tmp/artifacts/
tests-e2e-fixtures-clouddeploy:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-clouddeploy"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-clouddeploy
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-clouddeploy
path: /tmp/artifacts/
tests-e2e-fixtures-clouddms:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-clouddms"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-clouddms
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-clouddms
path: /tmp/artifacts/
tests-e2e-fixtures-cloudfunctions:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-cloudfunctions"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-cloudfunctions
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-cloudfunctions
path: /tmp/artifacts/
tests-e2e-fixtures-cloudfunctions2:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-cloudfunctions2"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-cloudfunctions2
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-cloudfunctions2
path: /tmp/artifacts/
tests-e2e-fixtures-cloudidentity:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: 'go.mod'
- name: "Run dev/ci/presubmits/tests-e2e-fixtures-cloudidentity"
run: |
./dev/ci/presubmits/tests-e2e-fixtures-cloudidentity
env:
ARTIFACTS: /tmp/artifacts
- name: "Upload artifacts"
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: artifacts-tests-e2e-fixtures-cloudidentity
path: /tmp/artifacts/
tests-e2e-fixtures-cloudids:
runs-on: ubuntu-latest
needs: unit-tests
timeout-minutes: 60
steps:
- uses: actions/checkout@v4