forked from eBay/rules_ytt
-
Notifications
You must be signed in to change notification settings - Fork 0
85 lines (75 loc) · 2.19 KB
/
ci.yaml
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
name: Main CI
on:
push:
branches:
- main
pull_request:
types:
- labeled
- unlabeled
- opened
- edited
- reopened
- synchronize
- ready_for_review
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
check-pr:
name: Validate Release Label and Notes
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set bump mode
id: mode
run: |
echo "reff=${{github.ref}}" >> $GITHUB_OUTPUT
echo "bump_mode=validate" >> $GITHUB_OUTPUT
- uses: jefflinse/[email protected]
name: Validate Pull Request Metadata
with:
mode: ${{ steps.mode.outputs.bump_mode }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
major-label: major release
minor-label: minor release
patch-label: patch release
noop-labels: not-a-release
release-notes-prefix: -- begin release notes --
release-notes-suffix: -- end release notes --
with-v: true
base-branch: true
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache Bazel
uses: actions/cache@v3
with:
path: |
~/.cache/bazel
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE') }}
restore-keys: bazel-cache-
- name: Build everything
env:
# Bazelisk will download bazel to here.
XDG_CACHE_HOME: ~/.cache/bazel-repo
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc build //...
- name: Test everything
env:
# Bazelisk will download bazel to here.
XDG_CACHE_HOME: ~/.cache/bazel-repo
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...
release:
name: Release
# if: github.ref == 'refs/heads/main' && needs.check-pr.version != 'vnull'
if: startsWith(github.ref, 'refs/tags/v')
needs:
- check-pr
- build
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@v5
with:
prerelease: true
release_files: rules_ytt-*.tar.gz