-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evalg 84 #711
base: master
Are you sure you want to change the base?
Evalg 84 #711
Conversation
&& apt-get update \ | ||
&& apt-get install -y rti-connext-dds-7.3.0 \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists | ||
|
||
# For armv8 uncomment the following line | ||
# ENV CONNEXTDDS_ARCH=armv8Linux4gcc7.3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice to figure out the right CONNEXTDDS_ARCH based on the system's archicteure (for ex. with uname -m
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I haven't tested this on armv8, this comment was leftover from how the file was before. If everything else looks good, I'll test this part in the lab to see if setting CONNEXTDDS_ARCH is needed and if so, using uname -m or some other cpu command
Summary
Rewriting the EvalGuide Docker module to use Debian package for creating docker images with Connext installed
Details and comments
-Updated Dockerfile to install packages such as curl, run the basic install commands for Connext
-Updated CmakeList to refer to /app to find cmake files
Checks