Torque3D/Engine/lib/libogg/.github/workflows/cmake.yml
marauder2k7 700bf32a2a Update minimum requirements and libs
This updates the minimum required cmake version and the libs that have updates for this.
Ogg updated to master as of 20052025
Libsndfile updated to master as of 20052025
Opus minimum cmake version changed
vorbis minimum cmake version changed
2025-05-20 10:09:42 +01:00

38 lines
639 B
YAML

name: CMake build
on:
push:
pull_request:
schedule:
- cron: '0 0 1 * *'
jobs:
build:
strategy:
matrix:
os:
[
ubuntu-latest,
macos-latest,
windows-latest,
]
runs-on: ${{ matrix.os }}
env:
BUILD: _build
steps:
- uses: actions/checkout@v2
- name: Prepare build directory
run: mkdir ${{ env.BUILD }}
- name: Configure
run: cmake -S . -B ${{ env.BUILD }}
- name: Build
run: cmake --build ${{ env.BUILD }}
- name: Test
run: ctest --test-dir ${{ env.BUILD }} -V -C Debug