Skip to content

Commit

Permalink
wup
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Nov 15, 2023
1 parent a0d23ae commit 8be7f8a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .ci/get_repo_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ def main():

if build_for in architecture:

refs = properties['git_refs']

if variant == "stable":
ref = properties['stable_ref']
ref = refs['stable_ref']
if variant == "unstable":
ref = refs['unstable_ref']
else:
ref = properties['unstable_ref']
ref = refs['testing_ref']

print("{} {} {}".format(repo_name, url, ref))

Expand Down
2 changes: 2 additions & 0 deletions .ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ ARCH=$(dpkg-architecture -qDEB_HOST_ARCH)

# we already have a docker image with ros for the ARM build
if [[ "$ARCH" != "arm64" ]]; then
echo "curl https://ctu-mrs.github.io/ppa-$VARIANT/add_ros_ppa.sh | bash"
curl https://ctu-mrs.github.io/ppa-$VARIANT/add_ros_ppa.sh | bash
fi

echo "curl https://ctu-mrs.github.io/ppa-$VARIANT/add_ppa.sh | bash"
curl https://ctu-mrs.github.io/ppa-$VARIANT/add_ppa.sh | bash

# dependencies need for build the deb package
Expand Down

0 comments on commit 8be7f8a

Please sign in to comment.