mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 21:15:19 +01:00
try ci update
This commit is contained in:
parent
185651a042
commit
7660bca336
49
.github/workflows/ubuntu-latest-icc.yml
vendored
Normal file
49
.github/workflows/ubuntu-latest-icc.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
name: ubuntu-latest-icc-ci
|
||||||
|
|
||||||
|
on: [push, 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: [10, 9, 8]
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
name: GCC ${{ matrix.version }}
|
||||||
|
|
||||||
|
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=Debug
|
||||||
|
|
||||||
|
- 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 }}
|
47
.github/workflows/vs16.yml
vendored
47
.github/workflows/vs16.yml
vendored
@ -1,47 +0,0 @@
|
|||||||
name: vs19-ci
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- feature/**
|
|
||||||
- improvement/**
|
|
||||||
- bugfix/**
|
|
||||||
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
- feature/**
|
|
||||||
- improvement/**
|
|
||||||
- bugfix/**
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ci:
|
|
||||||
name: windows-vs19
|
|
||||||
runs-on: windows-latest
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: bash
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- {gen: Visual Studio 19 2019, install: git, arch: Win32}
|
|
||||||
- {gen: Visual Studio 19 2019, install: git, arch: x64}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: script/ci_install_deps.sh
|
|
||||||
|
|
||||||
- name: Configure
|
|
||||||
run: cmake -S test -B build -D CMAKE_BUILD_TYPE=Debug
|
|
||||||
|
|
||||||
- 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 }}
|
|
@ -1,4 +1,4 @@
|
|||||||
name: msys2-clang-ci
|
name: win-msys2-clang-ci
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
@ -1,4 +1,4 @@
|
|||||||
name: msys2-gcc-ci
|
name: win-msys2-gcc-ci
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
Loading…
Reference in New Issue
Block a user