-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (53 loc) · 1.47 KB
/
ci.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
55
56
57
name: Continuous Integration
on:
pull_request:
branches: [ main ]
schedule:
# Every day at 11:09 UTC.
- cron: '9 11 * * *'
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tidy_and_test_matrix:
strategy:
fail-fast: false
matrix:
runner: [macos-12, ubuntu-22.04]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: cgrindel/gha_set_up_bazel@v1
with:
repo_name: rules_gcs
- name: Execute Tests
shell: bash
run: bazelisk test //...
integration_test_matrix:
strategy:
fail-fast: false
matrix:
runner: [macos-12, ubuntu-22.04]
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: cgrindel/gha_set_up_bazel@v1
with:
repo_name: rules_gcs
- name: Execute Integration Tests
shell: bash
run: bazelisk test //:all_integration_tests
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
all_ci_tests:
runs-on: ubuntu-22.04
needs: [tidy_and_test_matrix, integration_test_matrix]
if: ${{ always() }}
steps:
- uses: cgrindel/gha_join_jobs@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}