|
@@ -75,7 +75,7 @@ jobs:
|
|
# 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
|
|
# the buildscript wich platforms it should build for.
|
|
# the buildscript wich platforms it should build for.
|
|
- gradle -PuseCommitHashAsVersionName=true --no-daemon -PbuildForPlatforms=LinuxArm,LinuxArmHF,LinuxArm64 -PbuildNativeProjects=true \
|
|
|
|
|
|
+ ./gradlew -PuseCommitHashAsVersionName=true --no-daemon -PbuildForPlatforms=LinuxArm,LinuxArmHF,LinuxArm64 -PbuildNativeProjects=true \
|
|
:jme3-bullet-native:assemble
|
|
:jme3-bullet-native:assemble
|
|
|
|
|
|
- name: Upload natives
|
|
- name: Upload natives
|
|
@@ -99,7 +99,7 @@ jobs:
|
|
|
|
|
|
- name: Build
|
|
- name: Build
|
|
run: |
|
|
run: |
|
|
- gradle -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
|
|
|
|
|
|
@@ -159,7 +159,7 @@ jobs:
|
|
fi
|
|
fi
|
|
|
|
|
|
# Build
|
|
# Build
|
|
- gradle -PuseCommitHashAsVersionName=true --no-daemon -PbuildNativeProjects=true -Dmaven.repo.local="$PWD/dist/maven" \
|
|
|
|
|
|
+ ./gradlew -PuseCommitHashAsVersionName=true --no-daemon -PbuildNativeProjects=true -Dmaven.repo.local="$PWD/dist/maven" \
|
|
build \
|
|
build \
|
|
:jme3-bullet-native:build
|
|
:jme3-bullet-native:build
|
|
|
|
|
|
@@ -238,7 +238,7 @@ jobs:
|
|
shell: bash
|
|
shell: bash
|
|
run: |
|
|
run: |
|
|
# Build
|
|
# Build
|
|
- gradle -PuseCommitHashAsVersionName=true -PskipPrebuildLibraries=true build
|
|
|
|
|
|
+ ./gradlew -PuseCommitHashAsVersionName=true -PskipPrebuildLibraries=true build
|
|
|
|
|
|
if [ "${{ matrix.deploy }}" = "true" ];
|
|
if [ "${{ matrix.deploy }}" = "true" ];
|
|
then
|
|
then
|
|
@@ -247,7 +247,7 @@ jobs:
|
|
sudo apt-get install -y zip
|
|
sudo apt-get install -y zip
|
|
|
|
|
|
# Create the zip release and the javadoc
|
|
# Create the zip release and the javadoc
|
|
- gradle -PuseCommitHashAsVersionName=true -PskipPrebuildLibraries=true mergedJavadoc createZipDistribution
|
|
|
|
|
|
+ ./gradlew -PuseCommitHashAsVersionName=true -PskipPrebuildLibraries=true mergedJavadoc createZipDistribution
|
|
|
|
|
|
# We prepare the release for deploy
|
|
# We prepare the release for deploy
|
|
mkdir -p ./dist/release/
|
|
mkdir -p ./dist/release/
|
|
@@ -255,7 +255,7 @@ jobs:
|
|
|
|
|
|
# Create the maven artifacts
|
|
# Create the maven artifacts
|
|
mkdir -p ./dist/maven/
|
|
mkdir -p ./dist/maven/
|
|
- gradle -PuseCommitHashAsVersionName=true -PskipPrebuildLibraries=true install -Dmaven.repo.local="$PWD/dist/maven"
|
|
|
|
|
|
+ ./gradlew -PuseCommitHashAsVersionName=true -PskipPrebuildLibraries=true install -Dmaven.repo.local="$PWD/dist/maven"
|
|
|
|
|
|
# Zip the natives into a single archive (we are going to use this to deploy native snapshots)
|
|
# Zip the natives into a single archive (we are going to use this to deploy native snapshots)
|
|
echo "Create native zip"
|
|
echo "Create native zip"
|