-
Notifications
You must be signed in to change notification settings - Fork 49
61 lines (54 loc) · 1.46 KB
/
build.yaml
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
name: CI
on: [pull_request, push]
# Defaults for building KLEE
env:
COVERAGE: 0
DISABLE_ASSERTIONS: 1
ENABLE_DOXYGEN: 0
ENABLE_OPTIMIZED: 1
ENABLE_DEBUG: 0
GTEST_VERSION: 1.11.0
KLEE_RUNTIME_BUILD: "Debug+Asserts"
LLVM_VERSION: 11
MINISAT_VERSION: "master"
REQUIRES_RTTI: 1
SANITIZER_BUILD:
SOLVERS: STP
STP_VERSION: 2.3.3
USE_TCMALLOC: 0
USE_LIBCXX: 0
Z3_VERSION: 4.8.14
SQLITE_VERSION: 3400100
BASE: /home/runner/work/klee-uclibc/klee-uclibc/
jobs:
Linux:
runs-on: ubuntu-latest
strategy:
matrix:
name: [
"Latest klee-uclibc",
]
include:
# Check we can build latest klee-uclibc branch
- name: "Latest klee-uclibc"
env:
UCLIBC_VERSION: ""
steps:
- name: Checkout KLEE UClibc source code
uses: actions/checkout@v2
with:
path: klee-uclibc-90
- name: Checkout KLEE source code
uses: actions/checkout@v2
with:
repository: klee/klee
path: klee
- name: Build UClibc
env: ${{ matrix.env }}
run: $GITHUB_WORKSPACE/klee/scripts/build/build.sh uclibc --install-system-deps --debug
- name: Build KLEE
env: ${{ matrix.env }}
run: $GITHUB_WORKSPACE/klee/scripts/build/build.sh klee --install-system-deps --debug
- name: Run tests
env: ${{ matrix.env }}
run: cd $GITHUB_WORKSPACE/klee_build110stp && make check