forked from UnitTestBot/ksmt
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (48 loc) · 1.27 KB
/
build-and-run-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
name: Build and run simple ksmt tests
on:
push:
branches:
- main
pull_request:
types: [ opened, edited ]
branches:
- main
jobs:
run_tests:
name: Run tests
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'zulu'
cache: gradle
- name: Build and run z3 tests on macOS
uses: gradle/gradle-build-action@v2
if: runner.os == 'macOS'
with:
arguments: |
:ksmt-z3:build
--no-daemon
--continue
-PrunBenchmarksBasedTests=false
- name: Build and run simple tests on Linux or Windows
uses: gradle/gradle-build-action@v2
if: runner.os != 'macOS'
with:
arguments: |
build
--no-daemon
--continue
-PrunBenchmarksBasedTests=false
- name: Upload ksmt test reports
uses: actions/upload-artifact@v3
if: always()
with:
name: ksmt-tests-report-${{ matrix.os }}
path: ./**/build/reports/tests/test/