Skip to content

Add CI.

Add CI. #25

Workflow file for this run

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: |
[[ ${{ github.ref }} == 'refs/heads/main' ]] && M="bump" || M="validate";
echo "bump_mode=$M" >> $GITHUB_OUTPUT
- uses: jefflinse/pr-semver-bump@v1.6.0
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