Improving builds and docs. #18
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Java CI with Gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
java: ['17.0.9', '21.0.1'] | |
fail-fast: false | |
max-parallel: 4 | |
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
# # Based on https://medium.com/@shilyndon/purging-azure-cdn-with-github-actions-1c18e2adaf18 | |
# - name: Azure service principal login | |
# uses: azure/login@v1 | |
# with: | |
# creds: ${{ secrets.AZURE_CREDENTIALS }} | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew jlinkZip | |
# - name: Upload to Azure Blob Storage | |
# uses: bacongobbler/azure-blob-storage-upload@v3.0.0 | |
# with: | |
# source_dir: 'build/dist' | |
# container_name: 'downloads' | |
# extra_args: '--destination-path scenic-view' | |
# connection_string: ${{ secrets.ConnectionString }} | |
# overwrite: 'true' | |
- uses: LanceMcCarthy/Action-AzureBlobUpload@v2 | |
name: Azure Blob Upload | |
with: | |
connection_string: ${{ secrets.ConnectionString }} | |
container_name: downloads | |
source_folder: build/dist | |
destination_folder: scenic-view | |
delete_if_exists: true | |
# - name: Purge Azure CDN | |
# uses: svanboxel/azure-purge-cdn@main | |
# with: | |
# cdn_endpoint: Jonathangiles | |
# cdn_profile_name: ${{ secrets.AZURE_CDN_PROFILE_NAME }} | |
# resource_group: ${{ secrets.AZURE_RESOURCE_GROUP }} | |
# - name: Azure service principal logout | |
# run: | | |
# az logout |