Skip to content

Commit 42a30dc

Browse files
committed
travis->github actions
1 parent e0930e2 commit 42a30dc

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.github/workflows/main.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Build and Deploy Snapshot
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- "3.0"
7+
- "2.13"
8+
paths-ignore:
9+
- "README.md"
10+
- "release-notes/*"
11+
pull_request:
12+
branches:
13+
- master
14+
paths-ignore:
15+
- "README.md"
16+
- "release-notes/*"
17+
jobs:
18+
build:
19+
runs-on: ${{ matrix.os }}
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
java_version: ['8', '11', '14']
24+
os: ['ubuntu-20.04']
25+
env:
26+
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
27+
steps:
28+
- uses: actions/checkout@v2
29+
- name: Set up JDK
30+
uses: actions/setup-java@v2
31+
with:
32+
distribution: "adopt"
33+
java-version: ${{ matrix.java_version }}
34+
server-id: sonatype-nexus-snapshots
35+
server-username: CI_DEPLOY_USERNAME
36+
server-password: CI_DEPLOY_PASSWORD
37+
- uses: actions/cache@v2.1.6
38+
with:
39+
path: ~/.m2/repository
40+
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
41+
restore-keys: |
42+
${{ runner.os }}-maven-
43+
- name: Build
44+
run: ./mvnw -V -B -ff -ntp verify
45+
- name: Deploy snapshot
46+
if: github.event_name != 'pull_request' && matrix.java_version == '8'
47+
env:
48+
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME }}
49+
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD }}
50+
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
51+
run: ./mvnw -V -B -ff -DskipTests -ntp source:jar deploy

0 commit comments

Comments
 (0)