Skip to content

Commit

Permalink
CI: multi-platform support x2
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcmd committed Feb 11, 2024
1 parent 53a7ff6 commit a2fdd1c
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,17 @@ jobs:
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Native Executable
run: gradlew nativeCompile
- name: Build Windows Native Executable
if: matrix.os == 'windows-latest'
run: ./gradlew.bat nativeCompile

- name: Build Linux Native Executable
if: matrix.os == 'ubuntu-latest'
run: ./gradlew nativeCompile

- name: Build MacOS Native Executable
if: matrix.os == 'macos-latest'
run: ./gradlew nativeCompile

- name: Upload Files
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit a2fdd1c

Please sign in to comment.