Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 3 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
os: [windows-latest]

steps:
- uses: actions/checkout@v4

- name: Setup CMake (Ubuntu)
if: matrix.os == 'ubuntu-latest'
uses: lukka/get-cmake@v3

- name: Setup MSVC dev environment (Windows)
if: matrix.os == 'windows-latest'
uses: TheMrMilchmann/setup-msvc-dev@v4
with:
arch: x64

- name: Configure
run: |
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release

- name: Build
run: |
cd build
cmake --build . --config Release
run: cmake --build build

- name: Run tests
if: always()
Expand Down