Skip to content

Commit 2765136

Browse files
committed
Initial commit
0 parents  commit 2765136

26 files changed

+976
-0
lines changed

.bazelrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Bazel settings that apply to this repository.
2+
# Take care to document any settings that you expect users to apply.
3+
# Settings that apply only to CI are in .github/workflows/ci.bazelrc
4+
5+
6+
# Load any settings specific to the current user.
7+
# .bazelrc.user should appear in .gitignore so that settings are not shared with team members
8+
# This needs to be last statement in this
9+
# config, as the user configuration should be able to overwrite flags from this file.
10+
# See https://docs.bazel.build/versions/master/best-practices.html#bazelrc
11+
# (Note that we use .bazelrc.user so the file appears next to .bazelrc in directory listing,
12+
# rather than user.bazelrc as suggested in the Bazel docs)
13+
try-import %workspace%/.bazelrc.user

.bazelversion

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
5.0.0
2+
# The first line of this file is used by Bazelisk and Bazel to be sure
3+
# the right version of Bazel is used to build and test this repo.
4+
# This also defines which version is used on CI.
5+
#
6+
# Note that you should also run integration_tests against other Bazel
7+
# versions you support.

.github/workflows/ci.bazelrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This file contains Bazel settings to apply on CI only.
2+
# It is referenced with a --bazelrc option in the call to bazel in ci.yaml
3+
4+
# Debug where options came from
5+
build --announce_rc
6+
# This directory is configured in GitHub actions to be persisted between runs.
7+
build --disk_cache=~/.cache/bazel
8+
build --repository_cache=~/.cache/bazel-repo
9+
# Don't rely on test logs being easily accessible from the test runner,
10+
# though it makes the log noisier.
11+
test --test_output=errors
12+
# Allows tests to run bazelisk-in-bazel, since this is the cache folder used
13+
test --test_env=XDG_CACHE_HOME

.github/workflows/ci.yaml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: CI
2+
3+
# Controls when the action will run.
4+
on:
5+
# Triggers the workflow on push or pull request events but only for the main branch
6+
push:
7+
branches: [main]
8+
pull_request:
9+
branches: [main]
10+
11+
# Allows you to run this workflow manually from the Actions tab
12+
workflow_dispatch:
13+
14+
jobs:
15+
test:
16+
# The type of runner that the job will run on
17+
runs-on: ubuntu-latest
18+
19+
# Steps represent a sequence of tasks that will be executed as part of the job
20+
steps:
21+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22+
- uses: actions/checkout@v2
23+
# Cache build and external artifacts so that the next ci build is incremental.
24+
# Because github action caches cannot be updated after a build, we need to
25+
# store the contents of each build in a unique cache key, then fall back to loading
26+
# it on the next ci run. We use hashFiles(...) in the key and restore-keys- with
27+
# the prefix to load the most recent cache for the branch on a cache miss. You
28+
# should customize the contents of hashFiles to capture any bazel input sources,
29+
# although this doesn't need to be perfect. If none of the input sources change
30+
# then a cache hit will load an existing cache and bazel won't have to do any work.
31+
# In the case of a cache miss, you want the fallback cache to contain most of the
32+
# previously built artifacts to minimize build time. The more precise you are with
33+
# hashFiles sources the less work bazel will have to do.
34+
- name: Mount bazel caches
35+
uses: actions/cache@v2
36+
with:
37+
path: |
38+
"~/.cache/bazel"
39+
"~/.cache/bazel-repo"
40+
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE') }}
41+
restore-keys: bazel-cache-
42+
- name: bazel test //...
43+
env:
44+
# Bazelisk will download bazel to here, ensure it is cached between runs.
45+
XDG_CACHE_HOME: ~/.cache/bazel-repo
46+
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...

.github/workflows/release.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Cut a release whenever a new tag is pushed to the repo.
2+
# You should use an annotated tag, like `git tag -a v1.2.3`
3+
# and put the release notes into the commit message for the tag.
4+
name: Release
5+
6+
on:
7+
push:
8+
tags:
9+
- "v*.*.*"
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Mount bazel caches
18+
uses: actions/cache@v2
19+
with:
20+
path: |
21+
"~/.cache/bazel"
22+
"~/.cache/bazel-repo"
23+
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE') }}
24+
restore-keys: bazel-cache-
25+
- name: bazel test //...
26+
env:
27+
# Bazelisk will download bazel to here
28+
XDG_CACHE_HOME: ~/.cache/bazel-repo
29+
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...
30+
- name: Prepare workspace snippet
31+
run: .github/workflows/workspace_snippet.sh ${{ env.GITHUB_REF_NAME }} > release_notes.txt
32+
- name: Release
33+
uses: softprops/action-gh-release@v1
34+
with:
35+
prerelease: true
36+
# Use GH feature to populate the changelog automatically
37+
generate_release_notes: true
38+
body_path: release_notes.txt
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#!/usr/bin/env bash
2+
3+
set -o errexit -o nounset -o pipefail
4+
5+
# Set by GH actions, see
6+
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
7+
TAG=${GITHUB_REF_NAME}
8+
PREFIX="rules_mylang-${TAG:1}"
9+
SHA=$(git archive --format=tar --prefix=${PREFIX}/ ${TAG} | gzip | shasum -a 256 | awk '{print $1}')
10+
11+
cat << EOF
12+
WORKSPACE snippet:
13+
\`\`\`starlark
14+
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
15+
http_archive(
16+
name = "com_myorg_rules_mylang",
17+
sha256 = "${SHA}",
18+
strip_prefix = "${PREFIX}",
19+
url = "https://github.com/myorg/rules_mylang/archive/refs/tags/${TAG}.tar.gz",
20+
)
21+
22+
# Fetches the rules_mylang dependencies.
23+
# If you want to have a different version of some dependency,
24+
# you should fetch it *before* calling this.
25+
# Alternatively, you can skip calling this function, so long as you've
26+
# already fetched all the dependencies.
27+
load("@com_myorg_rules_mylang//mylang:repositories.bzl", "rules_mylang_dependencies")
28+
rules_mylang_dependencies()
29+
30+
\`\`\`
31+
EOF

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bazel-*
2+
.bazelrc.user

.pre-commit-config.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# See CONTRIBUTING.md for instructions.
2+
# See https://pre-commit.com for more information
3+
# See https://pre-commit.com/hooks.html for more hooks
4+
5+
# Commitizen runs in commit-msg stage
6+
# but we don't want to run the other hooks on commit messages
7+
default_stages: [commit]
8+
9+
repos:
10+
# Check formatting and lint for starlark code
11+
- repo: https://github.com/keith/pre-commit-buildifier
12+
rev: 4.0.1.1
13+
hooks:
14+
- id: buildifier
15+
- id: buildifier-lint
16+
# Enforce that commit messages allow for later changelog generation
17+
- repo: https://github.com/commitizen-tools/commitizen
18+
rev: v2.18.0
19+
hooks:
20+
# Requires that commitizen is already installed
21+
- id: commitizen
22+
stages: [commit-msg]
23+
- repo: https://github.com/pre-commit/mirrors-prettier
24+
rev: "v2.4.0"
25+
hooks:
26+
- id: prettier

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docs/*.md

BUILD.bazel

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2+
load("@bazel_gazelle//:def.bzl", "gazelle", "gazelle_binary")
3+
4+
gazelle_binary(
5+
name = "gazelle_bin",
6+
languages = ["@bazel_skylib//gazelle/bzl"],
7+
)
8+
9+
gazelle(
10+
name = "gazelle",
11+
gazelle = "gazelle_bin",
12+
)
13+
14+
bzl_library(
15+
name = "internal_deps",
16+
srcs = ["internal_deps.bzl"],
17+
visibility = ["//visibility:public"],
18+
deps = [
19+
"@bazel_tools//tools/build_defs/repo:http.bzl",
20+
"@bazel_tools//tools/build_defs/repo:utils.bzl",
21+
],
22+
)

CONTRIBUTING.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# How to Contribute
2+
3+
## Formatting
4+
5+
Starlark files should be formatted by buildifier.
6+
We suggest using a pre-commit hook to automate this.
7+
First [install pre-commit](https://pre-commit.com/#installation),
8+
then run
9+
10+
```shell
11+
pre-commit install
12+
```
13+
14+
Otherwise later tooling on CI may yell at you about formatting/linting violations.
15+
16+
## Updating BUILD files
17+
18+
Some targets are generated from sources.
19+
Currently this is just the `bzl_library` targets.
20+
Run `bazel run //:gazelle` to keep them up-to-date.
21+
22+
## Using this as a development dependency of other rules
23+
24+
You'll commonly find that you develop in another WORKSPACE, such as
25+
some other ruleset that depends on rules_mylang, or in a nested
26+
WORKSPACE in the integration_tests folder.
27+
28+
To always tell Bazel to use this directory rather than some release
29+
artifact or a version fetched from the internet, run this from this
30+
directory:
31+
32+
```sh
33+
OVERRIDE="--override_repository=rules_mylang=$(pwd)/rules_mylang"
34+
echo "build $OVERRIDE" >> ~/.bazelrc
35+
echo "fetch $OVERRIDE" >> ~/.bazelrc
36+
echo "query $OVERRIDE" >> ~/.bazelrc
37+
```
38+
39+
This means that any usage of `@rules_mylang` on your system will point to this folder.
40+
41+
## Releasing
42+
43+
1. Determine the next release version, following semver (could automate in the future from changelog)
44+
1. Tag the repo and push it (or create a tag in GH UI)
45+
1. Watch the automation run on GitHub actions

0 commit comments

Comments
 (0)