Skip to content

Commit

Permalink
Merge pull request #53 from markspec/11_cicd_build
Browse files Browse the repository at this point in the history
CICD build
  • Loading branch information
BrianMichell authored Jul 31, 2024
2 parents c127871 + 405c129 commit b6d93b7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cmake_build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: C/C++ build

on: [push, pull_request]

jobs:
cmake_build:
strategy:
matrix:
os: [ubuntu-latest] # [ubuntu-latest, macos-latest]
compiler: [g++, clang++]
runs-on: ${{ matrix.os }}
steps:
- name: Setup NASM
uses: ilammy/setup-nasm@v1
- name: Checkout
uses: actions/[email protected]
- name: Configure and Build Project
uses: threeal/cmake-action@main
with:
cxx-compiler: ${{ matrix.compiler }}

0 comments on commit b6d93b7

Please sign in to comment.