-
Notifications
You must be signed in to change notification settings - Fork 138
58 lines (51 loc) · 1.27 KB
/
on-push-release.yml
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
48
49
50
51
52
53
54
55
56
57
58
name: "Release"
on:
push:
permissions:
contents: write # required by build-test to comment on coverage but not used here.
defaults:
run:
shell: bash --noprofile --norc -x -eo pipefail {0}
jobs:
quick:
name: "Ubuntu"
strategy:
fail-fast: false
matrix:
compiler: [gcc, clang]
ubuntu_version: [latest, 20.04]
uses: ./.github/workflows/build-test.yml
with:
server_version: main
ubuntu_version: ${{ matrix.ubuntu_version }}
compiler: ${{ matrix.compiler }}
dev-mode:
name: "DEV_MODE"
uses: ./.github/workflows/build-test.yml
with:
dev_mode: ON
server_version: main
verbose_test_output: ON
verbose_make_output: ON
san-addr:
name: "Sanitize address"
uses: ./.github/workflows/build-test.yml
with:
sanitize: address
server_version: main
type: RelWithDebInfo
san-thread:
name: "Sanitize thread"
uses: ./.github/workflows/build-test.yml
with:
sanitize: thread
server_version: main
type: RelWithDebInfo
san-thread-pool:
name: "Sanitize thread (msg dispatch pool)"
uses: ./.github/workflows/build-test.yml
with:
sanitize: thread
server_version: main
type: RelWithDebInfo
lib_msg_delivery: ON