Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
210910794
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2021
210910794
Commits
0df1713b
Unverified
Commit
0df1713b
authored
5 years ago
by
Ruffin
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #1158 from ros-planning/ruffsl-patch-1
Fix underlay parameter for install_overlay_dependencies
parents
ba9cba71
e96d1851
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.circleci/config.yml
+10
-10
10 additions, 10 deletions
.circleci/config.yml
.dockerhub/debug/hooks/build
+1
-1
1 addition, 1 deletion
.dockerhub/debug/hooks/build
with
11 additions
and
11 deletions
.circleci/config.yml
+
10
−
10
View file @
0df1713b
...
...
@@ -66,7 +66,7 @@ references:
cat << parameters.underlay >>/checksum.txt > checksum.txt
vcs export --exact src | \
(echo vcs_export && cat) >> checksum.txt
sha256sum checksum.txt >> checksum.txt
sha256sum
$PWD/
checksum.txt >> checksum.txt
apt-get update
dependencies=$(
rosdep install -q -y \
...
...
@@ -79,7 +79,7 @@ references:
tr -d \, | xargs -n1 | sort -u | xargs)
dpkg -s $dependencies | \
(echo workspace_dependencies && cat) >> checksum.txt
sha256sum checksum.txt >> checksum.txt
sha256sum
$PWD/
checksum.txt >> checksum.txt
setup_workspace
:
description
:
"
Setup
Workspace"
parameters
:
...
...
@@ -177,14 +177,14 @@ references:
run
:
name
:
Pre Checkout
command
:
|
mkdir -p $ROS_WS
ln -s /opt/ros/$ROS_DISTRO
$ROS_WS/
install
mkdir -p $ROS_WS
&& cd $ROS_WS
ln -s /opt/ros/$ROS_DISTRO install
echo $CACHE_NONCE | \
(echo cache_nonce && cat) >>
$ROS_WS/
checksum.txt
sha256sum $
ROS_WS
/checksum.txt >>
$ROS_WS/
checksum.txt
(echo cache_nonce && cat) >> checksum.txt
sha256sum $
PWD
/checksum.txt >> checksum.txt
TZ=utc stat -c '%y' /ros_entrypoint.sh | \
(echo ros_entrypoint && cat) >>
$ROS_WS/
checksum.txt
sha256sum $
ROS_WS
/checksum.txt >>
$ROS_WS/
checksum.txt
(echo ros_entrypoint && cat) >> checksum.txt
sha256sum $
PWD
/checksum.txt >> checksum.txt
rm -rf $OVERLAY_WS/*
on_checkout
:
&on_checkout
checkout
:
...
...
@@ -233,7 +233,7 @@ references:
build
:
false
install_overlay_dependencies
:
&install_overlay_dependencies
install_dependencies
:
underlay
:
/opt/
ros
_ws
underlay
:
/opt/
underlay
_ws
workspace
:
/opt/overlay_ws
setup_overlay_workspace
:
&setup_overlay_workspace
setup_workspace
:
&setup_workspace_overlay
...
...
@@ -321,7 +321,7 @@ executors:
<<
:
*common_environment
CACHE_NONCE
:
"
Debug"
OVERLAY_MIXINS
:
"
debug
ccache
coverage-gcc"
UNDERLAY_MIXINS
:
"
debug
ccache"
UNDERLAY_MIXINS
:
"
release
ccache"
release_exec
:
docker
:
-
image
:
rosplanning/navigation2:master.release
...
...
This diff is collapsed.
Click to expand it.
.dockerhub/debug/hooks/build
+
1
−
1
View file @
0df1713b
...
...
@@ -3,7 +3,7 @@ set -ex
export
FROM_IMAGE
=
osrf
/
ros2
:
nightly
export
FAIL_ON_BUILD_FAILURE
=
""
export
UNDERLAY_MIXINS
=
"
debug
ccache
"
export
UNDERLAY_MIXINS
=
"
release
ccache
"
export
OVERLAY_MIXINS
=
"
debug ccache coverage-gcc
"
docker
build
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment