Bump ch.qos.logback:logback-classic from 1.2.3 to 1.3.12 #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: [push] | |
jobs: | |
build-ubuntu-mac: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DeLaGuardo/setup-graalvm@master | |
with: | |
graalvm-version: '21.0.0.2.java11' | |
- run: java -version | |
- run: gu install native-image | |
- name: Build with Maven Wrapper | |
run: ./mvnw -B -ntp verify | |
- name: Rename the artifact to OS-unique name | |
shell: bash | |
run: | | |
value=`cp target/simple-kafka-manager target/simple-kafka-manager-${{ matrix.os }}` | |
- name: Publish artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: simple-kafka-manager-${{ matrix.os }} | |
path: target/simple-kafka-manager-${{ matrix.os }} | |
if-no-files-found: error | |
#TODO we'll come back to this later | |
# build-windows: | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# os: [windows-latest] | |
# | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: DeLaGuardo/setup-graalvm@master | |
# with: | |
# graalvm-version: '21.0.0.2.java11' | |
# - run: java -version | |
# - name: Set up Visual C Build Tools Workload for Visual Studio 2017 Build Tools | |
# run: | | |
# choco install visualstudio2017-workload-vctools | |
# - name: set env variables and run the Maven Wrapper build | |
# shell: cmd | |
# run: | | |
# call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvars64.bat" | |
# ./mvnw -B -ntp verify | |
# - name: Rename the artifact to OS-unique name | |
# shell: bash | |
# run: | | |
# value=`cp build/graal/checksum build/graal/checksum-${{ matrix.os }}` | |
# - name: Publish artifact | |
# uses: actions/upload-artifact@master | |
# with: | |
# name: checksum-${{ matrix.os }}.exe | |
# path: build/graal |