-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (30 loc) · 1021 Bytes
/
linux_maven.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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Linux Build
on:
push:
branches:
- release/*
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- name: Set up Maven 3.9.x
uses: s4u/[email protected]
with:
maven-version: '3.9.5'
- name: Build with Maven
run: mvn -s .ci.settings.xml --no-transfer-progress -Dgh_username=${{ secrets.GH_USERNAME }} -Dgh_token=${{ secrets.GH_TOKEN }} -Prelease-commons,sonatype-oss-release package site
env:
MAVEN_OPTS: -Xms128m -Xmx512m
nvd_api_key: ${{ secrets.NVD_API_KEY }}