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 dashing support. #64

Merged
merged 1 commit into from
May 19, 2022
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
23 changes: 2 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,37 +8,18 @@ on:

env:
PACKAGE_NAME: maliput_dragway
ROS_DISTRO: foxy
ROS_WS: maliput_ws

jobs:
compile_and_test:
name: Compile and test
runs-on: ubuntu-latest
strategy:
matrix:
ubuntu: [18.04, 20.04]
include:
- ubuntu: 18.04
ROS_DISTRO: dashing
- ubuntu: 20.04
ROS_DISTRO: foxy
container:
image: ubuntu:${{ matrix.ubuntu }}
env:
ROS_DISTRO: ${{ matrix.ROS_DISTRO }}
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/[email protected]
# install git from ppa since git 2.18+ is needed to fetch all branches from actions/checkout
# this step can be removed on 20.04
- name: install git from ppa
if: matrix.ubuntu == '18.04'
shell: bash
run: |
apt update;
apt install -y software-properties-common;
add-apt-repository -y -u ppa:git-core/ppa;
apt install -y git;
- uses: actions/checkout@v2
with:
path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }}
Expand Down