-
Notifications
You must be signed in to change notification settings - Fork 15
82 lines (73 loc) · 2.2 KB
/
tests.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
72
73
74
75
76
77
78
79
80
81
82
name: Tests
on:
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
with:
enable-hls: true
enable-mlir: true
make-target: check
gcc:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
with:
enable-hls: true
enable-mlir: true
cxx: g++
make-target: check
valgrind:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
with:
enable-hls: true
enable-mlir: true
make-target: valgrind-check
polybench:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
- name: "Run polybench"
run: ./scripts/run-polybench.sh
llvm-test-suite:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
- name: "Run the llvm-test-suite-opt"
run: ./scripts/run-llvm-test-suite.sh --make-target llvm-run-opt
llvm-test-suite-andersen-agnostic:
if: contains(github.event.pull_request.title, '[AndersenAgnostic]')
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
- name: "Run the llvm-test-suite-andersen-agnostic"
run: ./scripts/run-llvm-test-suite.sh --make-target llvm-run-andersen-agnostic
llvm-test-suite-steensgaard-agnostic:
if: contains(github.event.pull_request.title, '[SteensgaardAgnostic]')
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
- name: "Run the llvm-test-suite-steensgard-agnostic"
run: ./scripts/run-llvm-test-suite.sh --make-target llvm-run-steensgaard-agnostic