-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: Fix building of ikfast plugins (backport #2791)
* CI: Fix building of ikfast plugins (#2791) Ignore missing authentication for Indigo packages using --force-yes. (cherry picked from commit 9ee6669) * CI: Fix format.yaml to Ubuntu 20.04 --------- Co-authored-by: Robert Haschke <[email protected]>
- Loading branch information
1 parent
1255936
commit 88bbf06
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,7 +117,7 @@ FROM personalrobotics/ros-openrave | |
RUN apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 && \ | ||
apt-key del 421C365BD9FF1F717815A3895523BAEEB01FA116 && \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends python-pip build-essential liblapack-dev ros-indigo-collada-urdf && \ | ||
apt-get install -y --force-yes --no-install-recommends python-pip build-essential liblapack-dev ros-indigo-collada-urdf && \ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* | ||
# enforce a specific version of sympy, which is known to work with OpenRave | ||
RUN pip install git+https://github.com/sympy/[email protected] | ||
|