Skip to content

Commit

Permalink
pip install vcstool only in 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasw committed Jul 19, 2024
1 parent 6b5e043 commit 27e706b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ubuntu_20_04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,15 @@ jobs:

- name: local apt dependencies
run: |
apt-get install -y python3-pip
pip install vcstool
mkdir staging
cd staging
mkdir -p underlay_ws/src
cp ../ros_from_src/*sh underlay_ws
sudo underlay_ws/dependencies.sh
pip install vcstool
- name: local git dependencies
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ubuntu_24_04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
mkdir -p underlay_ws/src
cp ../ros_from_src/*sh underlay_ws
sudo underlay_ws/dependencies.sh
pip install vcstool
- name: local git dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ apt-get install -y python3-gnupg
# TODO(lucasw) get this from source later
# apt-get install -y python3-rosunit

apt-get install -y catkin-tools
apt-get install -y catkin-tools || true # not available in 20.04
apt-get install -y libbullet-dev
apt-get install -y vcstool || true # this is in 24.04 but not 20.04

0 comments on commit 27e706b

Please sign in to comment.