2021-05-21 18:37:42 +02:00
|
|
|
name: Build
|
2020-11-20 12:52:31 +01:00
|
|
|
|
|
|
|
# Controls when the action will run.
|
|
|
|
on:
|
|
|
|
# Triggers the workflow on push or pull request events but only for the main branch
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
2020-11-23 10:56:11 +01:00
|
|
|
schedule:
|
|
|
|
- cron: '30 6 * * 1' # At 06:30 on Monday, every Monday.
|
2020-11-20 12:52:31 +01:00
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2021-05-21 18:37:42 +02:00
|
|
|
java17:
|
2020-11-20 12:52:31 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-11-23 10:56:11 +01:00
|
|
|
# http://man7.org/linux/man-pages/man1/date.1.html
|
|
|
|
- name: Create Cache Key
|
|
|
|
id: cache-key
|
|
|
|
run: |
|
2021-05-06 23:26:16 +02:00
|
|
|
echo "::set-output name=key::$(/bin/date -u "+%Y%U-2")"
|
2020-11-23 10:56:11 +01:00
|
|
|
shell: bash
|
|
|
|
|
2020-11-20 12:52:31 +01:00
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
|
|
- uses: actions/checkout@v2
|
2020-11-21 21:40:57 +01:00
|
|
|
|
|
|
|
# Enable caching of Docker layers
|
2021-03-19 17:23:48 +01:00
|
|
|
- uses: satackey/action-docker-layer-caching@v0.0.11
|
2020-11-21 17:00:30 +01:00
|
|
|
continue-on-error: true
|
2020-11-23 10:56:11 +01:00
|
|
|
with:
|
|
|
|
key: docker-cache-${{ steps.cache-key.outputs.key }}-{hash}
|
|
|
|
restore-keys: |
|
|
|
|
docker-cache-${{ steps.cache-key.outputs.key }}-
|
2020-11-20 12:52:31 +01:00
|
|
|
|
|
|
|
# Run the make script
|
2020-11-21 17:00:30 +01:00
|
|
|
- name: Make build
|
|
|
|
run: make build
|
2021-04-14 12:11:14 +02:00
|
|
|
- name: Publish Test Report
|
2021-04-27 15:06:43 +02:00
|
|
|
uses: scacap/action-surefire-report@v1.0.9
|
|
|
|
if: ${{ always() }}
|
2021-04-14 12:11:14 +02:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
report_paths: '**/target/surefire-reports/TEST-*.xml'
|
|
|
|
commit: ${{ github.event.workflow_run.head_commit.id }}
|
2021-05-21 19:17:42 +02:00
|
|
|
check_name: java17 test reports
|
2021-04-14 12:11:14 +02:00
|
|
|
- name: Upload build artefacts
|
|
|
|
uses: actions/upload-artifact@v2
|
2020-11-30 13:49:25 +01:00
|
|
|
if: ${{ failure() }}
|
|
|
|
with:
|
2021-03-28 14:02:39 +02:00
|
|
|
name: artifacts
|
2021-04-26 17:27:31 +02:00
|
|
|
path: target/
|
2021-05-06 14:11:47 +02:00
|
|
|
# Make room for the docker layer caching to package up layers
|
|
|
|
- name: Cleanup
|
|
|
|
run: rm -fr *
|
2021-05-21 18:37:42 +02:00
|
|
|
java11:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Java 11
|
|
|
|
uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
distribution: 'adopt' # See 'Supported distributions' for available options
|
|
|
|
java-version: '11'
|
2021-05-21 21:53:57 +02:00
|
|
|
- uses: actions/cache@v2
|
2021-05-21 19:15:31 +02:00
|
|
|
with:
|
|
|
|
path: ~/.m2/repository
|
|
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-maven-
|
2021-05-21 18:37:42 +02:00
|
|
|
- name: Maven build
|
|
|
|
run: mvn verify -B -C -T1C -fae
|
2021-05-21 19:17:42 +02:00
|
|
|
- name: Publish Test Report
|
|
|
|
uses: scacap/action-surefire-report@v1.0.9
|
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
report_paths: '**/target/surefire-reports/TEST-*.xml'
|
|
|
|
commit: ${{ github.event.workflow_run.head_commit.id }}
|
|
|
|
check_name: java11 test reports
|
|
|
|
- name: Upload build artefacts
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: ${{ failure() }}
|
|
|
|
with:
|
|
|
|
name: artifacts
|
|
|
|
path: target/
|