mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
name: single-header-ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- feature/**
|
|
- improvement/**
|
|
- bugfix/**
|
|
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- feature/**
|
|
- improvement/**
|
|
- bugfix/**
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
single_header_tests:
|
|
if: >-
|
|
! contains(toJSON(github.event.commits.*.message), '[skip ci]') &&
|
|
! contains(toJSON(github.event.commits.*.message), '[skip github]')
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: "Single Header Test"
|
|
|
|
container:
|
|
image: gcc:latest
|
|
options: -v /usr/local:/host_usr_local
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: friendlyanon/fetch-core-count@v1
|
|
id: cores
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y git
|
|
|
|
- name: Single header update check
|
|
run: |
|
|
script/single_header_generator.py > tmp.hpp
|
|
diff ssp.hpp tmp.hpp
|
|
|
|
- name: Single header compile check
|
|
run: ./test/test_single_header.sh
|