Skip to content
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

[cleanup] Remove test stage from CI Pipeline #220

Merged
merged 1 commit into from
Sep 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 4 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: CI
on:
pull_request:
branches: [ master ]
types: [ closed ]
branches: [master]
types: [closed]
push:
branches-ignore:
- master
Expand All @@ -18,7 +18,7 @@ jobs:
with:
submodules: recursive
path: colcon_ws/src/urc-software

- name: Update Dependencies
shell: bash
run: |
Expand All @@ -34,34 +34,6 @@ jobs:
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build

test:
name: Test
needs: build
runs-on: ubuntu-22.04
container: robojackets/urc-baseimage:humble
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
submodules: recursive
path: colcon_ws/src/urc-software

- name: Update Dependencies
shell: bash
run: |
source /opt/ros/humble/setup.bash
sudo apt-get update
sudo apt-get --with-new-pkgs upgrade -y

- name: Colcon Test
shell: bash
working-directory: colcon_ws
run: |
source /opt/ros/humble/setup.bash
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build && colcon test && colcon test-result --verbose

cpp_linting:
name: C++ Linting
Expand Down Expand Up @@ -95,7 +67,7 @@ jobs:
run: |
source /opt/ros/humble/setup.bash
ament_flake8 --exclude external

build_linting:
name: Build Linting
runs-on: ubuntu-22.04
Expand Down
Loading