Skip to content

Commit

Permalink
Add container environment build to CI after building image
Browse files Browse the repository at this point in the history
  • Loading branch information
Purg committed Dec 8, 2023
1 parent bfe8c61 commit 940e62f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
# Use scripting to perform a build for the current state of this branch.
- name: Build image
run: ./angel-docker-build.sh
# Make sure workspace builds with this environment
- name: Build Workspace
run: ./angel-workspace-shell.sh -s workspace-shell-dev ./workspace_build.sh

code-style-py:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions docker/workspace_build_rosdep_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,10 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# ROS2 workspace source directory.
cd "$SCRIPT_DIR"

# Run update if we have no cache yet
if [[ ! -d ${HOME}/.ros/rosdep ]]
then
rosdep update
fi

rosdep install -i --from-path "${ANGEL_WORKSPACE_DIR}" --rosdistro "${ROS_DISTRO}" -y

0 comments on commit 940e62f

Please sign in to comment.