|
@@ -69,8 +69,9 @@ jobs:
|
|
uses: actions/checkout@v1
|
|
uses: actions/checkout@v1
|
|
with:
|
|
with:
|
|
fetch-depth: 1
|
|
fetch-depth: 1
|
|
-
|
|
|
|
- - name: Build
|
|
|
|
|
|
+ - name: Validate the Gradle wrapper
|
|
|
|
+ uses: gradle/wrapper-validation-action@v1
|
|
|
|
+ - name: Build
|
|
run: |
|
|
run: |
|
|
# Build
|
|
# Build
|
|
# Note: since this is crossbuild we use the buildForPlatforms filter to tell
|
|
# Note: since this is crossbuild we use the buildForPlatforms filter to tell
|
|
@@ -96,9 +97,10 @@ jobs:
|
|
uses: actions/checkout@v1
|
|
uses: actions/checkout@v1
|
|
with:
|
|
with:
|
|
fetch-depth: 1
|
|
fetch-depth: 1
|
|
-
|
|
|
|
- - name: Build
|
|
|
|
- run: |
|
|
|
|
|
|
+ - name: Validate the Gradle wrapper
|
|
|
|
+ uses: gradle/wrapper-validation-action@v1
|
|
|
|
+ - name: Build
|
|
|
|
+ run: |
|
|
./gradlew -PuseCommitHashAsVersionName=true --no-daemon -PbuildNativeProjects=true \
|
|
./gradlew -PuseCommitHashAsVersionName=true --no-daemon -PbuildNativeProjects=true \
|
|
:jme3-android-native:assemble \
|
|
:jme3-android-native:assemble \
|
|
:jme3-bullet-native-android:assemble
|
|
:jme3-bullet-native-android:assemble
|
|
@@ -137,8 +139,9 @@ jobs:
|
|
uses: actions/setup-java@v1
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
with:
|
|
java-version: ${{ matrix.jdk }}
|
|
java-version: ${{ matrix.jdk }}
|
|
- architecture: x64
|
|
|
|
-
|
|
|
|
|
|
+ architecture: x64
|
|
|
|
+ - name: Validate the Gradle wrapper
|
|
|
|
+ uses: gradle/wrapper-validation-action@v1
|
|
- name: Build Natives
|
|
- name: Build Natives
|
|
shell: bash
|
|
shell: bash
|
|
env:
|
|
env:
|
|
@@ -233,7 +236,8 @@ jobs:
|
|
with:
|
|
with:
|
|
name: linuxarm-natives
|
|
name: linuxarm-natives
|
|
path: build/native
|
|
path: build/native
|
|
-
|
|
|
|
|
|
+ - name: Validate the Gradle wrapper
|
|
|
|
+ uses: gradle/wrapper-validation-action@v1
|
|
- name: Build Engine
|
|
- name: Build Engine
|
|
shell: bash
|
|
shell: bash
|
|
run: |
|
|
run: |
|