-
Notifications
You must be signed in to change notification settings - Fork 9
47 lines (44 loc) · 994 Bytes
/
ci.yml
File metadata and controls
47 lines (44 loc) · 994 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: "Continuous Integration"
on:
pull_request:
push:
branches-ignore: ["pr/**"]
tags: ["**"]
workflow_dispatch:
defaults:
run:
shell: "bash"
jobs:
ci-linux:
name: Linux CI
uses: bus1/cabuild/.github/workflows/ci-c-util.yml@v1
with:
cabuild_ref: "v1"
linux: true
m32: true
matrixmode: true
valgrind: true
ci-macos:
name: MacOS CI
uses: bus1/cabuild/.github/workflows/ci-c-util.yml@v1
with:
cabuild_ref: "v1"
linux: false
macos: true
#
# Windows CI is disabled, as it constantly causes headaches and no-one
# takes care of them. If you need c-stdaux on Windows, feel free to help out.
#
# ci-windows:
# name: Windows CI
# uses: bus1/cabuild/.github/workflows/ci-c-util.yml@v1
# with:
# cabuild_ref: "v1"
# linux: false
# windows: true
#
ci-docs:
name: Documentation CI
uses: bus1/cabuild/.github/workflows/ci-sphinx.yml@v1
with:
source: "./src/docs"