Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
esaulpaugh committed Aug 4, 2024
1 parent 43ff022 commit bf3477f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/aarch64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Java CI gradle aarch64

on: [push, pull_request]

jobs:
build:

strategy:
matrix:
os: [ macos-12, macos-13, macos-14, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04 ]
version: [ '11.0.24' ]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- uses: gradle/actions/wrapper-validation@v3

- name: Set up JDK 8 x64
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.version }}
java-package: jdk
architecture: aarch64
cache: 'gradle'

- name: Build with Gradle
run: |
java -version
chmod +x ./gradlew
./gradlew build fatJar --no-daemon
java -jar build/libs/headlong-cli-1.1-SNAPSHOT.jar -version

0 comments on commit bf3477f

Please sign in to comment.