Skip to content

Commit

Permalink
Disable unsupported kinetic build in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
betwo committed Sep 25, 2021
1 parent 5a40df2 commit 7ca6bb1
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/continuous_integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-16.04, ubuntu-18.04, ubuntu-20.04]
os: [ubuntu-18.04, ubuntu-20.04]
compiler:
[
"-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++",
Expand All @@ -23,10 +23,7 @@ jobs:
- name: "determine_ros_version"
id: determine_ros_version
run:
if ${{ contains(matrix.os, '16.04') }} ; then
echo "kinetic" ;
echo "::set-output name=ros_version::kinetic" ;
elif ${{ contains(matrix.os, '18.04') }} ; then
if ${{ contains(matrix.os, '18.04') }} ; then
echo "melodic" ;
echo "::set-output name=ros_version::melodic" ;
elif ${{ contains(matrix.os, '20.04') }} ; then
Expand Down

0 comments on commit 7ca6bb1

Please sign in to comment.