mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
507010781a
Because any change that touches continuous integration needs a companion o.O PiperOrigin-RevId: 347769780 Change-Id: I20525aaac2ce41c48f619b641baa31e880432e50
38 lines
914 B
YAML
38 lines
914 B
YAML
name: CMake
|
|
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
BUILD_TYPE: Release
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04, ubuntu-18.04]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install ninja-build tool
|
|
uses: seanmiddleditch/gha-setup-ninja@v3
|
|
|
|
- name: Create Build Environment
|
|
run: |
|
|
pip3 install absl-py clang
|
|
cmake -E make_directory ${{runner.workspace}}/build
|
|
|
|
- name: Configure CMake
|
|
working-directory: ${{runner.workspace}}/build
|
|
run: cmake $GITHUB_WORKSPACE -G Ninja -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
|
|
|
- name: Build
|
|
working-directory: ${{runner.workspace}}/build
|
|
run: cmake --build . --config $BUILD_TYPE
|
|
|
|
# TODO(cblichmann): Before enabling this, make sure all OSS tests pass
|
|
#- name: Test
|
|
# working-directory: ${{runner.workspace}}/build
|
|
# run: ctest -C $BUILD_TYPE
|