|
|
@ -11,15 +11,9 @@ jobs:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
matrix:
|
|
|
|
os: [windows-latest, macos-10.15, ubuntu-18.04]
|
|
|
|
os: [windows-latest, macos-10.15]
|
|
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- name: configure
|
|
|
|
|
|
|
|
run: |
|
|
|
|
|
|
|
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
|
|
|
|
|
|
|
export CXX=g++-8
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
|
|
- name: Build
|
|
|
|
run: cmake -S. -Bbin && cmake --build bin --config $BUILD_TYPE
|
|
|
|
run: cmake -S. -Bbin && cmake --build bin --config $BUILD_TYPE
|
|
|
|