-
Notifications
You must be signed in to change notification settings - Fork 613
42 lines (38 loc) · 963 Bytes
/
smoke.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
name: Smoke
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '.github/**'
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
java: [ 17 ]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
run: ./gradlew clean build -x docsZip -x distZip -PstatemachineIncludeTags=smoke -PstatemachineTestResults=true
- name: Tar Build Logs
if: ${{ failure() }}
run: |
mkdir -p build
tar -zc --ignore-failed-read --file build/buildlogs.tar.gz */build/reports */*/build/reports
- name: Upload Build Logs
if: ${{ failure() }}
uses: actions/upload-artifact@v2
with:
name: buildlogs
path: build/buildlogs.tar.gz