Skip to content

Commit

Permalink
Implement basic file IO
Browse files Browse the repository at this point in the history
  • Loading branch information
cfnptr committed Nov 15, 2021
1 parent 7ad89f6 commit d37dc97
Show file tree
Hide file tree
Showing 7 changed files with 1,146 additions and 2 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CMake

on: [push]

env:
BUILD_TYPE: Release

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
with:
submodules: true

- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build

- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --config $BUILD_TYPE

- name: Test
working-directory: ${{runner.workspace}}/build
shell: bash
run: ctest -C $BUILD_TYPE
Loading

0 comments on commit d37dc97

Please sign in to comment.