-
Notifications
You must be signed in to change notification settings - Fork 37
71 lines (60 loc) · 1.79 KB
/
test-pr.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
59
60
61
62
63
64
65
66
67
68
69
70
71
name: DaCapo Tests
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
# Normal build: build both fastdebug and release
build-normal-fastdebug:
uses: ./.github/workflows/build.yml
with:
debug-level: fastdebug
build-normal-release:
uses: ./.github/workflows/build.yml
with:
debug-level: release
# Feature build: only build fastdebug
build-vo-bit:
uses: ./.github/workflows/build.yml
with:
build-env-var: MMTK_VO_BIT=1
debug-level: fastdebug
build-extreme-assertions:
uses: ./.github/workflows/build.yml
with:
build-env-var: MMTK_EXTREME_ASSERTIONS=1
debug-level: fastdebug
build-malloc-mark-sweep:
uses: ./.github/workflows/build.yml
with:
# Test malloc mark sweep with extreme assertions
build-env-var: MMTK_MALLOC_MARK_SWEEP=1 MMTK_EXTREME_ASSERTIONS=1
debug-level: fastdebug
build-mark-in-header:
uses: ./.github/workflows/build.yml
with:
# Before we get other plans work with mark in header, we only test with malloc mark sweep.
build-env-var: MMTK_MALLOC_MARK_SWEEP=1 MMTK_MARK_IN_HEADER=1
debug-level: fastdebug
build-forwarding-on-side:
uses: ./.github/workflows/build.yml
with:
build-env-var: MMTK_FORWARDING_ON_SIDE=1
debug-level: fastdebug
run-dacapo-2006:
needs:
- build-normal-fastdebug
- build-vo-bit
- build-extreme-assertions
- build-malloc-mark-sweep
- build-mark-in-header
- build-forwarding-on-side
uses: ./.github/workflows/run-dacapo-2006.yml
run-dacapo-chopin:
needs:
- build-normal-fastdebug
- build-normal-release
uses: ./.github/workflows/run-dacapo-chopin.yml