![Derek Mauro](/assets/img/avatar_default.png)
Breaks the intended C++ version on some CI builds PiperOrigin-RevId: 474022587 Change-Id: I41a58893802c90864e0f2cc3d15e6c169c59146d
44 lines
790 B
YAML
44 lines
790 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
env:
|
|
BAZEL_CXXOPTS: -std=c++14
|
|
|
|
jobs:
|
|
Linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Tests
|
|
run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
|
|
|
|
MacOs:
|
|
runs-on: macos-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Tests
|
|
run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
|
|
|
|
|
|
Windows:
|
|
runs-on: windows-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Tests
|
|
run: bazel test --cxxopt=-std=c++14 --features=external_include_paths --test_output=errors ...
|