We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc9af1e commit f18a64bCopy full SHA for f18a64b
Dockerfile.instrumentation
@@ -0,0 +1,13 @@
1
+# Provides cmumars/cp2:instrumentation
2
+#
3
+# This image is used to provide an instrumented version of baseline A,
4
+# in order to avoid the need to reinstrument the program for each
5
+# perturbation (which may take 10--20 minutes).
6
7
+FROM cmumars/cp2:base
8
+RUN . /opt/ros/${ROS_DISTRO}/setup.sh \
9
+ && catkin clean -y \
10
+ && catkin config --cmake-args \
11
+ -DCMAKE_CXX_FLAGS="--coverage" \
12
+ -DCMAKE_LD_FLAGS="--coverage" \
13
+ && catkin build
0 commit comments