Skip to content

Commit

Permalink
build: bringing in CI yml from exp branch
Browse files Browse the repository at this point in the history
  • Loading branch information
malachib committed Dec 7, 2024
1 parent 6c26f49 commit e2f3318
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CMake

on:
push:
branches: [ "dev/**", "alpha" ]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

jobs:
build:
env:
unit_test_dir: ${{github.workspace}}/test/catch

runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Build
uses: threeal/cmake-action@v2.0.0
with:
source-dir: ${{env.unit_test_dir}}

0 comments on commit e2f3318

Please sign in to comment.