chore: initial commit

This commit is contained in:
fallenoak 2020-11-22 23:25:22 -06:00
commit c955dd6531
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
16 changed files with 18109 additions and 0 deletions

42
.github/workflows/push.yml vendored Normal file
View file

@ -0,0 +1,42 @@
name: Push
on:
push:
branches:
- master
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- name: Ubuntu Latest (GCC)
os: ubuntu-latest
build_type: Release
cc: gcc
cxx: g++
- name: macOS Latest (Clang)
os: macos-latest
build_type: Release
cc: clang
cxx: clang++
steps:
- uses: actions/checkout@v2
- name: Prepare
run: mkdir build
- name: Configure
run: cd build && cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
- name: Build
run: cd build && make
- name: Test
run: ./build/test/TempestTest