2020-03-21 09:59:32 +00:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
2020-04-26 19:19:59 +00:00
|
|
|
job:
|
2020-04-27 16:51:02 +00:00
|
|
|
name: ${{ matrix.os }}-${{ matrix.cxx }}-build-and-test
|
2020-04-26 19:19:59 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-04-28 05:39:13 +00:00
|
|
|
name: [ubuntu-gcc, macos-clang, windows-msvc, ubuntu-clang]
|
2020-04-27 16:51:02 +00:00
|
|
|
# For Windows msvc, for Linux and macOS let's use the clang compiler, use gcc for Linux.
|
2020-04-26 19:19:59 +00:00
|
|
|
include:
|
2020-04-28 05:39:13 +00:00
|
|
|
- name: windows-msvc
|
|
|
|
os: windows-latest
|
2020-04-26 19:19:59 +00:00
|
|
|
cxx: cl.exe
|
|
|
|
cc: cl.exe
|
2020-04-28 05:39:13 +00:00
|
|
|
- name: ubuntu-clang
|
|
|
|
os: ubuntu-latest
|
2020-04-26 19:19:59 +00:00
|
|
|
cxx: clang++
|
|
|
|
cc: clang
|
2020-04-28 05:39:13 +00:00
|
|
|
- name: macos-clang
|
|
|
|
os: macos-latest
|
2020-04-26 19:19:59 +00:00
|
|
|
cxx: clang++
|
|
|
|
cc: clang
|
2020-04-28 05:39:13 +00:00
|
|
|
- name: ubuntu-gcc
|
|
|
|
os: ubuntu-latest
|
|
|
|
cxx: g++
|
|
|
|
cc: gcc
|
2020-04-26 19:19:59 +00:00
|
|
|
|
2020-03-21 09:59:32 +00:00
|
|
|
steps:
|
2020-04-15 14:29:55 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-03-29 15:55:28 +00:00
|
|
|
|
2020-04-26 19:19:59 +00:00
|
|
|
- uses: lukka/get-cmake@latest
|
2020-03-29 16:39:55 +00:00
|
|
|
|
2020-04-26 19:19:59 +00:00
|
|
|
- uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
|
|
|
|
- uses: lukka/set-shell-env@v1
|
|
|
|
with:
|
|
|
|
CXX: ${{ matrix.cxx }}
|
|
|
|
CC: ${{ matrix.cc }}
|
|
|
|
|
|
|
|
- name: configure and build
|
|
|
|
uses: lukka/run-cmake@v2
|
|
|
|
with:
|
|
|
|
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
|
|
|
|
cmakeListsTxtPath: '${{ github.workspace }}/CMakeLists.txt'
|
|
|
|
cmakeAppendedArgs: '-GNinja -DCMAKE_BUILD_TYPE=Release'
|
|
|
|
buildWithCMakeArgs: '-- -v'
|
|
|
|
buildDirectory: '${{ github.workspace }}/build/'
|
|
|
|
|
2020-03-29 16:39:55 +00:00
|
|
|
- name: test
|
2020-04-26 19:19:59 +00:00
|
|
|
run: cd build/bin && ./unit
|
|
|
|
shell: bash
|