Build images with artifacts outside of docker #4
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: Docker v2 | |
on: | |
pull_request: | |
# release: | |
# types: [published] | |
# push: | |
# branches: | |
# - develop | |
# - main | |
# - release\/* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ !contains(github.ref, 'release/')}} | |
# TODO: Configure the ARM build | |
# TODO: Use self-hosted github actions | |
jobs: | |
build_java: | |
name: Build the Java App | |
runs-on: ubuntu-latest | |
steps: | |
- uses: RDXWorks-actions/checkout@main | |
- name: Set up JDK 17 | |
uses: RDXWorks-actions/setup-java@main | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- uses: RDXWorks-actions/gradle-cache-action@main | |
name: Build PROJECT_NAME | |
env: | |
SKIP_NATIVE_RUST_BUILD: TRUE | |
JAVA_TOOL_OPTIONS: "-Dfile.encoding=UTF8" | |
with: | |
job-id: jdk17 | |
arguments: clean build -x test | |
gradle-version: wrapper | |
# Properties are passed as -Pname=value | |
properties: | | |
ci=true | |
rustBinaryBuildType=release | |
- name: Extract artifacts | |
run: | | |
cd core/build/distributions | |
unzip -j *.zip | |
- name: Upload artifacts | |
uses: RDXWorks-actions/upload-artifact-v4@main | |
with: | |
name: java-build-jars | |
path: core/build/distributions/* | |
if-no-files-found: error | |
retention-days: 1 | |
include-hidden-files: false |