Skip to content

Commit

Permalink
Update JNetReflector version (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers authored Sep 20, 2024
1 parent a6df323 commit b42d289
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/generateclasses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}

- name: Download latest published version of JNetReflector
run: dotnet tool update --version 2.5.8 -g MASES.JNetReflector
run: dotnet tool update --version 2.5.9 -g MASES.JNetReflector
if: ${{ inputs.UseLatestJNetReflector == false }}

- name: Set up Apache Maven Central
Expand Down Expand Up @@ -125,7 +125,12 @@ jobs:
env:
JCOBRIDGE_LicensePath: ${{ secrets.JCOBRIDGE_ONLINE }}

- name: Try compilation
- name: Try compilation of Jars
continue-on-error: ${{ inputs.ContinueOnLatestJNetReflectorError == true }}
if: ${{ inputs.UseLatestJNetReflector == true }}
run: mvn --file ./src/jvm/netdroid/pom.xml --no-transfer-progress package

- name: Try compilation of C#
continue-on-error: ${{ inputs.ContinueOnLatestJNetReflectorError == true }}
if: ${{ inputs.UseLatestJNetReflector == true }}
run: dotnet build --no-incremental --configuration Release /p:Platform="Any CPU" /p:NoWarn="0108%3B1030%3B0618" src\net\Netdroid.sln
Expand Down

0 comments on commit b42d289

Please sign in to comment.