-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (38 loc) · 1.11 KB
/
integration_tests_dynamic.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
name: Integration Tests Dynamic
on:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
env:
GIT_CLONE_PROTECTION_ACTIVE: false
jobs:
test:
name: Integration Tests Dynamic
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Restore Cache Bazel output
id: restore-cache-bazel-output
uses: actions/cache/restore@v3
env:
cache-name: cache-bazel-output
with:
path: bazel-output-base
key: ${{ runner.os }}-integration-dynamic-${{ env.cache-name }}
- name: make bootstrap
run: make bootstrap
- name: make integration-dynamic
run: make integration-dynamic
- name: Save Cache Bazel output
id: save-cache-bazel-output
uses: actions/cache/save@v3
if: always()
env:
cache-name: cache-bazel-output
with:
path: bazel-output-base
key: ${{ steps.restore-cache-bazel-output.outputs.cache-primary-key }}