Skip to content

Commit

Permalink
#113 iteration 5 of remote RPi build support
Browse files Browse the repository at this point in the history
  • Loading branch information
ylexus committed Jun 24, 2021
1 parent 51506d7 commit 5ddbed1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,9 @@ task hyperpackage {
dependsOn fullpackage
dependsOn runRemoteWindowsBuild
dependsOn runRemoteLinuxBuild
dependsOn runRemoteRpiBuild
dependsOn moveFinalArtifactsToDeploymentDir
moveFinalArtifactsToDeploymentDir.mustRunAfter 'fullpackage', 'runRemoteWindowsBuild', 'runRemoteLinuxBuild'
moveFinalArtifactsToDeploymentDir.mustRunAfter 'fullpackage', 'runRemoteWindowsBuild', 'runRemoteLinuxBuild', 'runRemoteRpiBuild'
}

private static readEnvOrNull(String variableName) {
Expand Down
1 change: 1 addition & 0 deletions pull_and_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ rm -f "${LOG}"
echo "Version=${VERSION}"
if [[ "$(uname -a)" == *raspberrypi* ]]; then
RPI_ARG="-PraspberryPi"
echo "Building on Raspberry PI"
else
RPI_ARG=""
fi
Expand Down

0 comments on commit 5ddbed1

Please sign in to comment.