mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
73 lines
1.6 KiB
YAML
73 lines
1.6 KiB
YAML
name: win-msys2-gcc-ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- feature/**
|
|
- improvement/**
|
|
- bugfix/**
|
|
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- feature/**
|
|
- improvement/**
|
|
- bugfix/**
|
|
|
|
jobs:
|
|
windows-mingw:
|
|
if: >-
|
|
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
|
|
! contains(toJSON(github.event.commits.*.message), '[skip github]')
|
|
|
|
name: "${{matrix.msystem}}: ${{matrix.os}}: ${{matrix.type}}"
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
defaults:
|
|
run:
|
|
shell: msys2 {0}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
os: [windows-2019, windows-latest]
|
|
type: [Release, Debug]
|
|
include:
|
|
- msystem: "MINGW64"
|
|
install: >-
|
|
git mingw-w64-x86_64-cmake mingw-w64-x86_64-ninja
|
|
mingw-w64-x86_64-gcc
|
|
|
|
- msystem: "MINGW32"
|
|
install: >-
|
|
git mingw-w64-i686-cmake mingw-w64-i686-ninja
|
|
mingw-w64-i686-gcc
|
|
|
|
env:
|
|
CMAKE_GENERATOR: Ninja
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: msys2/setup-msys2@v2
|
|
with:
|
|
update: true
|
|
msystem: ${{matrix.msystem}}
|
|
install: ${{matrix.install}}
|
|
|
|
- name: Install dependencies
|
|
run: script/ci_install_deps.sh
|
|
|
|
- name: Configure
|
|
run: cmake -S test -B build -D CMAKE_BUILD_TYPE=${{matrix.type}}
|
|
|
|
- name: Build
|
|
run: cmake --build build -j ${{steps.cores.outputs.count}}
|
|
|
|
- name: Run
|
|
working-directory: build
|
|
run: ctest --output-on-failure -j ${{steps.cores.outputs.count}}
|