Skip to content

Add quarkus-junit5 and quarkus-junit5-mockito as extra artifacts to process as part of the quarkus command #301

Add quarkus-junit5 and quarkus-junit5-mockito as extra artifacts to process as part of the quarkus command

Add quarkus-junit5 and quarkus-junit5-mockito as extra artifacts to process as part of the quarkus command #301

Workflow file for this run

name: "Build"
on:
push:
branches:
- master
paths-ignore:
- '.gitignore'
- 'LICENSE'
- '*.md'
- '*.adoc'
- '*.txt'
pull_request:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- '*.md'
- '*.adoc'
- '*.txt'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 11 ]
steps:
- uses: actions/checkout@v2
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache Maven Repository
id: cache-maven
uses: actions/cache@v2
with:
path: ~/.m2/repository
# refresh cache every month to avoid unlimited growth
key: maven-repo-jdk-${{ matrix.java }}-${{ steps.get-date.outputs.date }}
- name: Install JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build with Maven
run: export LANG=en_US && mvn -B clean install
- name: Delete Local Artifacts From Cache
shell: bash
run: rm -rf ~/.m2/repository/io/quarkus/quarkus-platform-bom*