blob: 2bffa36ed6af77fd52b051f45c777571e302d693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
configuration: ['debug', 'release']
compiler: ['gcc', 'clang']
steps:
- uses: actions/checkout@v2.3.4
with:
submodules: 'true'
fetch-depth: '0'
- name: build
run:
CC=${{matrix.compiler}}
CONFIGURATION=${{matrix.configuration}}
source ./github_build.sh
- name: test
run:
CONFIGURATION=${{matrix.configuration}}
CC=${{matrix.compiler}}
source ./github_test.sh
|