Try to use aseprite/get-ninja GitHub action in workflows #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, macos-latest, ubuntu-latest] | |
enable_image: [on, off] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: aseprite/get-ninja@ci | |
- uses: ilammy/msvc-dev-cmd@v1 | |
if: runner.os == 'Windows' | |
- name: Generating Makefiles | |
run: cmake . -G "Ninja" -DCLIP_ENABLE_IMAGE=${{ matrix.enable_image }} | |
- name: Compiling | |
shell: bash | |
run: cmake --build . | |
- name: Running Tests | |
shell: bash | |
run: | | |
if [[ "${{ runner.os }}" == "Linux" ]] ; then | |
export XVFB=xvfb-run | |
fi | |
$XVFB ctest --output-on-failure | |
mingw: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
sys: [ mingw64, mingw32, ucrt64, clang64 ] | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: aseprite/get-ninja@ci | |
- uses: msys2/setup-msys2@v2 | |
with: | |
release: false | |
msystem: ${{matrix.sys}} | |
pacboy: cc:p cmake:p | |
- uses: actions/checkout@v4 | |
- name: Generating Makefiles | |
run: cmake . | |
- name: Compiling | |
run: cmake --build . | |
- name: Test | |
run: ctest --output-on-failure |