Skip to content

feat: make swirl better #195

feat: make swirl better

feat: make swirl better #195

Workflow file for this run

name: Test CMake app
on:
push:
paths:
- "**.cpp"
- "**.h"
- "CMakeLists.txt"
- "**.cmake"
pull_request:
paths:
- "**.cpp"
- "**.h"
- "CMakeLists.txt"
- "**.cmake"
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
defaults:
run:
shell: bash
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "17.0.6"
- name: Configure CMake
run: |
if [ "${{ matrix.os }}" == "windows-latest" ]; then
cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -S Swirl -G "MinGW Makefiles"
else
cmake -B build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -S Swirl
fi
- name: Build
run: cmake --build build --config ${{env.BUILD_TYPE}}
- name: Run app
run: ./build/swirl