-
Notifications
You must be signed in to change notification settings - Fork 14
48 lines (38 loc) · 1.13 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
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-20.04, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
java-version: 8
distribution: 'zulu'
cache: gradle
- name: Setup gradle
uses: gradle/actions/setup-gradle@v3
- name: Build and run z3 tests on macOS
if: runner.os == 'macOS'
run: ./gradlew :ksmt-z3:build --no-daemon --continue -PrunBenchmarksBasedTests=false
- name: Build and run simple tests on Linux or Windows
if: runner.os != 'macOS'
run: ./gradlew build --no-daemon --continue -PrunBenchmarksBasedTests=false
- name: Upload ksmt test reports
uses: actions/upload-artifact@v4
if: always()
with:
name: ksmt-tests-report-${{ matrix.os }}
path: ./**/build/reports/tests/test/