-
Notifications
You must be signed in to change notification settings - Fork 27
38 lines (34 loc) · 988 Bytes
/
opttest.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
name: Optional Tests
on:
workflow_dispatch:
schedule:
- cron: "0 0 */10 * *"
jobs:
optional-tests:
continue-on-error: true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
java: [17]
tests: [":key.core.proof_references:test", ":key.core.symbolic_execution:test"]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{matrix.java}}
uses: actions/setup-java@v3
with:
java-version: ${{matrix.java}}
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/[email protected]
with:
arguments: --continue ${{ matrix.tests }}
- name: Upload test results
uses: actions/[email protected]
if: success() || failure()
with:
name: test-results
path: |
**/build/test-results/*/*.xml
**/build/reports/