fix compiler issues #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 //... |