From 599a0d5c562d53b22a4eb4477913545502bec084 Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Fri, 8 May 2020 09:42:19 -0700 Subject: [PATCH] possible fix for issue #1365 --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index edd830d64..dc876101a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -205,7 +205,7 @@ jobs: uses: actions/setup-java@v1 with: java-version: ${{ matrix.jdk }} - architecture: x64 + architecture: x64 - name: Download natives for linux uses: actions/download-artifact@master @@ -218,7 +218,7 @@ jobs: with: name: windows-natives path: build/native - + - name: Download natives for mac uses: actions/download-artifact@master with: @@ -350,6 +350,8 @@ jobs: if [ "$NATIVE_CHANGES" = "" ];then NATIVE_CHANGES="$(git diff-tree --name-only "$GITHUB_SHA" "$nativeSnapshot" -- jme3-android-native/)"; fi if [ "$NATIVE_CHANGES" = "" ];then NATIVE_CHANGES="$(git diff-tree --name-only "$GITHUB_SHA" "$nativeSnapshot" -- jme3-bullet-native-android/)"; fi if [ "$NATIVE_CHANGES" = "" ];then NATIVE_CHANGES="$(git diff-tree --name-only "$GITHUB_SHA" "$nativeSnapshot" -- jme3-bullet/)"; fi + # The bulletUrl (in gradle.properties) might have changed. + if [ "$NATIVE_CHANGES" = "" ];then NATIVE_CHANGES="$(git diff-tree --name-only "$GITHUB_SHA" "$nativeSnapshot" -- gradle.properties)"; fi fi fi