-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.16 KB
/
bazel.yml
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
# This is a basic workflow that is manually triggered
name: bazel-build
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install clang
run: |
sudo apt-get update
sudo apt install clang libglfw3-dev libglew-dev libglfw3 libglew2.0
- name: Checkout
uses: actions/checkout@v1
- name: Mount bazel cache
uses: actions/cache@v1
with:
path: "/home/runner/.cache/bazel"
key: bazel
- name: Install bazelisk
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.1.0/bazelisk-linux-amd64"
mkdir -p "${GITHUB_WORKSPACE}/bin/"
mv bazelisk-linux-amd64 "${GITHUB_WORKSPACE}/bin/bazel"
chmod +x "${GITHUB_WORKSPACE}/bin/bazel"
- name: Build
run: |
"${GITHUB_WORKSPACE}/bin/bazel" build --compilation_mode=opt //...
# - name: Test
# run: |
# "${GITHUB_WORKSPACE}/bin/bazel" test --test_output=errors //...