Skip to content

Commit

Permalink
Merge pull request #869 from gazebo-tooling/jrivero/only_autopkgtest_…
Browse files Browse the repository at this point in the history
…amd64

Run autopktest only on amd64
  • Loading branch information
j-rivero authored Mar 9, 2023
2 parents 6cd691f + f54584e commit fab4c5d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jenkins-scripts/docker/lib/debbuild-base.bash
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,11 @@ test \$FOUND_PKG -eq 1 || exit 1
echo '# END SECTION'
cat /etc/apt/sources.list
${DEBBUILD_AUTOPKGTEST}
# Run only autopkgtest on amd64
# see https://github.com/gazebosim/gz-common/issues/484
if [[ ${ARCH} == 'amd64' ]]; then
${DEBBUILD_AUTOPKGTEST}
fi
DELIM

OSRF_REPOS_TO_USE=${OSRF_REPOS_TO_USE:=stable}
Expand Down

0 comments on commit fab4c5d

Please sign in to comment.