Skip to content

Commit

Permalink
pes
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Nov 15, 2023
1 parent 6bbf038 commit a1c3d2e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .ci/get_repo_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ def main():
refs = properties['git_refs']

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

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

Expand Down
5 changes: 1 addition & 4 deletions .ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ fi

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

# dependencies need for build the deb package
sudo apt-get -y install ros-noetic-catkin python3-catkin-tools
sudo apt-get -y install fakeroot debhelper
sudo pip3 install -U bloom
sudo apt-get -y -q install ros-noetic-mrs-uav-system

REPOS=$(./.ci/get_repo_source.py $YAML_FILE $VARIANT $ARCH $PACKAGE_NAME)

Expand Down

0 comments on commit a1c3d2e

Please sign in to comment.