|
| 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 //... |
0 commit comments