1
1
mirror of https://github.com/github/semantic.git synced 2024-11-26 09:07:39 +03:00
semantic/.github/workflows/bazel.yml
Patrick Thomson c8f387c148 don't die
2020-07-10 13:11:41 -04:00

43 lines
1.1 KiB
YAML

name: Bazel CI
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- master
pull_request:
jobs:
build:
name: Bazel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
- name: Download/cache bazel bersion
run: |
curl -LO "https://github.com/bazelbuild/bazel/releases/download/3.1.0/bazel-3.1.0-linux-x86_64"
mkdir "bin/" || true
mv bazel-3.0.0-linux-x86_64 "bin/bazel"
chmod +x "bin/bazel"
- uses: actions/cache@v2
id: caching-stage
name: Cache Bazel artifacts
with:
path: |
.bazel-cache
bin
key: ${{ runner.os }}-bazel-${{ github.run_id }}
restore-keys: |
${{ runner.os }}-bazel-
- name: Build & test
run: |
bin/bazel build --config=ci //semantic:all
bin/bazel test --config=ci --test_tag_filters=language-test //...
bin/bazel test --config=ci //semantic-source //semantic:spec