-
Notifications
You must be signed in to change notification settings - Fork 221
38 lines (32 loc) · 1001 Bytes
/
smoke-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
name: Smoke Tests (JDK11)
on: [push, pull_request]
jobs:
others:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
distribution: 'temurin'
java-version: '11.0.12+7'
- name: Build with Maven
run: mvn -B clean install -P smoke-tests --file pom.xml -fae
windows:
runs-on: windows-latest
steps:
- name: Configure Git to support long paths
run: git config --global core.longpaths true
- name: Verify Git configuration for long paths
run: git config --global core.longpaths
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: joschi/setup-jdk@v2
with:
distribution: 'temurin'
java-version: '11.0.12+7'
- name: Build with Maven
run: mvn -B clean install -P smoke-tests --file pom.xml -fae