Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into auton-starter-proj-24
Browse files Browse the repository at this point in the history
  • Loading branch information
qhdwight committed Sep 19, 2023
2 parents dbb0f16 + a9a5cd6 commit afb539b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: umrover1/ros:latest
options: --user root
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -22,9 +23,12 @@ jobs:
run: . /home/mrover/catkin_ws/src/mrover/venv/bin/activate && pip install -e "$GITHUB_WORKSPACE/src/mrover[dev]"
- name: Style Check
run: . /home/mrover/catkin_ws/src/mrover/venv/bin/activate && cd $GITHUB_WORKSPACE/src/mrover/ && ./style.sh
- name: Ensure APT Requirements
- name: Update ROS APT
if: github.event.pull_request.draft == false
run: rosdep update && rosdep install --from-paths "$GITHUB_WORKSPACE/src" --ignore-src -r -y --rosdistro noetic
run: runuser -u mrover -- rosdep update
- name: Ensure ROS APT Requirements
if: github.event.pull_request.draft == false
run: runuser -u mrover -- rosdep install --from-paths "$GITHUB_WORKSPACE/src" --ignore-src -r -y --rosdistro noetic
- name: Copy Catkin Profiles
if: github.event.pull_request.draft == false
run: rsync -r $GITHUB_WORKSPACE/src/mrover/ansible/roles/build/files/profiles $GITHUB_WORKSPACE/.catkin_tools
Expand Down

0 comments on commit afb539b

Please sign in to comment.