Skip to content

Commit

Permalink
Added missing yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
drowaudio committed May 20, 2024
1 parent 642084c commit cfdab39
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build
on:
push:
workflow_dispatch:

env:
BUILD_CONFIG: Release
BUILD_DIR: build

jobs:
test:
strategy:
fail-fast: false
matrix:
include:
- name: linux
os: ubuntu-latest
# - name: macOS
# os: macos-latest
# generator: "-G Xcode"

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: true

- name: "Build and test"
shell: bash
run: |
ctest --build-and-test . ./build_$OSTYPE --build-generator "Unix Makefiles" --test-command ctest --verbose
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.idea
build*
build_*
cmake-build*
Temporary/

0 comments on commit cfdab39

Please sign in to comment.