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

Refactor GHA build tests #299

Merged
Merged
Show file tree
Hide file tree
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
22 changes: 14 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
- name: setup
run: ./scripts/setup/mac/install_prereqs
shell: zsh -efuo pipefail {0}
- name: build and test
run: ./scripts/continuous_integration/github_actions/macos_sonoma/build_test
- name: cmake_installed build and test
run: ./scripts/continuous_integration/common/drake_cmake_installed
shell: zsh -efuo pipefail {0}
ros_humble:
name: ros 2 humble
Expand All @@ -82,8 +82,8 @@ jobs:
- name: setup
run: ./scripts/continuous_integration/github_actions/ros_humble/setup
shell: bash
- name: build and test
run: ./scripts/continuous_integration/github_actions/ros_humble/build_test
- name: ament_cmake_installed build and test
run: ./scripts/continuous_integration/common/drake_ament_cmake_installed
shell: bash
ubuntu_jammy:
name: ubuntu 22.04 jammy
Expand All @@ -95,8 +95,14 @@ jobs:
- name: setup
run: ./scripts/continuous_integration/github_actions/ubuntu_jammy/setup
shell: bash
- name: build and test
run: ./scripts/continuous_integration/github_actions/ubuntu_jammy/build_test
- name: bazel_download build and test
run: ./scripts/continuous_integration/common/drake_bazel_download
shell: bash
- name: catkin_installed build and test
run: ./scripts/continuous_integration/common/drake_catkin_installed
shell: bash
- name: cmake_installed build and test
run: ./scripts/continuous_integration/common/drake_cmake_installed
shell: bash
ubuntu_jammy_apt:
name: ubuntu 22.04 jammy apt
Expand All @@ -108,6 +114,6 @@ jobs:
- name: setup
run: ./scripts/continuous_integration/github_actions/ubuntu_apt/setup
shell: bash
- name: build and test
run: ./scripts/continuous_integration/github_actions/ubuntu_apt/build_test
- name: cmake_installed_apt build and test
run: ./scripts/continuous_integration/common/drake_cmake_installed_apt
shell: bash

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading