Skip to content

Commit

Permalink
Introduction of github actions for build
Browse files Browse the repository at this point in the history
  • Loading branch information
cppwfs committed Dec 20, 2019
1 parent 03b3840 commit fe24bc1
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci-maven-master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Java CI Task - master

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v1
- name: Cache maven repository
uses: actions/cache@v1
with:
path: .m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-m2-
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn "-Dmaven.repo.local=.m2" -U -B package -s .settings.xml
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ spring-*/src/main/java/META-INF/MANIFEST.MF
*.ipr
*.iws
.idea/*

# Github Actions
.m2

0 comments on commit fe24bc1

Please sign in to comment.