Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Geolm committed Feb 23, 2024
2 parents e221eab + 743c666 commit cedd737
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: C/C++ CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build-ubuntu-clang:
name: ubuntu-clang
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Configure CMake
run: cmake ${{github.workspace}}/tests/ -DCMAKE_C_COMPILER=clang

- name: Build
run: cmake --build ${{github.workspace}}/

- name: Test
working-directory: ${{github.workspace}}/
run: ./test

build-macos:
name: macos
runs-on: macos-latest

steps:
- uses: actions/checkout@v3

- name: Configure CMake
run: cmake ${{github.workspace}}/tests/

- name: Build
run: cmake --build ${{github.workspace}}/

- name: Test
working-directory: ${{github.workspace}}/
run: ./test

build-windows:
name: windows
runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Configure CMake
working-directory: ${{github.workspace}}\tests
run: cmake .

- name: Build
working-directory: ${{github.workspace}}\tests
run: cmake --build .

- name: Test
working-directory: ${{github.workspace}}\tests\Debug
run: ./test

0 comments on commit cedd737

Please sign in to comment.