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

Removes maliput_drake from CI. #59

Merged
merged 1 commit into from
Sep 28, 2023
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
60 changes: 22 additions & 38 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,79 +19,63 @@ jobs:
image: ubuntu:20.04
steps:
# setup-ros first since it installs git, which is needed to fetch all branches from actions/checkout
- uses: ros-tooling/setup-ros@0.2.1
- uses: ros-tooling/setup-ros@v0.3
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }}
# clone private dependencies
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput
repository: maliput/maliput
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_drake
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_drake
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
with:
repository: ToyotaResearchInstitute/maliput_py
repository: maliput/maliput_py
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_py
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_object
repository: maliput/maliput_object
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_object
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_dragway
repository: maliput/maliput_dragway
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_dragway
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_multilane
repository: maliput/maliput_multilane
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_multilane
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_malidrive
repository: maliput/maliput_malidrive
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_malidrive
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/delphyne
repository: maliput/delphyne
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/delphyne
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/delphyne_gui
repository: maliput/delphyne_gui
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/delphyne_gui
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_integration
repository: maliput/maliput_integration
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_integration
token: ${{ secrets.MALIPUT_TOKEN }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
repository: ToyotaResearchInstitute/maliput_integration_tests
repository: maliput/maliput_integration_tests
fetch-depth: 0
path: ${{ env.ROS_WS }}/src/maliput_integration_tests
token: ${{ secrets.MALIPUT_TOKEN }}
- name: check if dependencies have a matching branch
shell: bash
working-directory: ${{ env.ROS_WS }}/src
Expand Down
Loading