mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
name: ubuntu-latest-gcc-ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- feature/**
|
|
- improvement/**
|
|
- bugfix/**
|
|
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- feature/**
|
|
- improvement/**
|
|
- bugfix/**
|
|
|
|
jobs:
|
|
gcc_tests:
|
|
if: >-
|
|
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
|
|
! contains(toJSON(github.event.commits.*.message), '[skip github]')
|
|
|
|
strategy:
|
|
matrix:
|
|
version: ['latest', '13', '12', '11', '10', '9', '8']
|
|
type: [Release, Debug]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: GCC "${{matrix.version}}:${{matrix.type}}"
|
|
|
|
container:
|
|
image: gcc:${{matrix.version}}
|
|
|
|
options: -v /usr/local:/host_usr_local
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: friendlyanon/fetch-core-count@v1
|
|
id: cores
|
|
|
|
- name: CMake
|
|
run: echo "/host_usr_local/bin" >> $GITHUB_PATH
|
|
|
|
- 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}}
|