mvn formatter:format #154
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: Single-Platform Build | |
on: push | |
env: | |
BUILD_JDK: 11 | |
jobs: | |
# | |
# build the java application with single (local) platform | |
# | |
single_platform_jar: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ env.BUILD_JDK }} | |
- | |
name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- | |
name: Build using the build script | |
env: | |
GITHUB_USER: ${{ secrets.GH_USER }} | |
GITHUB_PASSWORD: ${{ secrets.GH_PASSWORD }} | |
run: ./build.sh | |
- | |
name: Archive Test Results | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: target | |
path: openssl4j/target | |
- | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: openssl4j/target/*.jar |