-
Notifications
You must be signed in to change notification settings - Fork 71
44 lines (38 loc) · 1.34 KB
/
gradle.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
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
version: ['2.7.0', '2.8.0', '2.9.0', '2.10.0', '3.0.0', '3.1.0']
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
env:
VERSION: ${{ matrix.version }}
run: ./gradlew clean build buildRpm buildDeb -PhadoopVersion=$VERSION
- uses: codecov/codecov-action@v1
- uses: actions/upload-artifact@v2
with:
name: nna_${{ matrix.version }}.rpm
path: build/distributions/*.rpm
- uses: actions/upload-artifact@v2
with:
name: nna_${{ matrix.version }}.deb
path: build/distributions/*.deb
- name: Archive and upload test reports
run: tar -cvf reports_${{ matrix.version }}.tar build/reports/tests/*
- uses: actions/upload-artifact@v2
with:
name: reports_${{ matrix.version }}.tar
path: reports_${{ matrix.version }}.tar