-
Notifications
You must be signed in to change notification settings - Fork 34
43 lines (37 loc) · 1.05 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
on:
push:
branches:
# - master
pull_request:
env:
DISPLAY: '0:0'
jobs:
linuxs:
runs-on: ubuntu-latest
# continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
include:
- ROS_DISTRO: indigo
CONTAINER: ubuntu:14.04
- ROS_DISTRO: kinetic
CONTAINER: ubuntu:16.04
- ROS_DISTRO: melodic
CONTAINER: ubuntu:18.04
- ROS_DISTRO: noetic
CONTAINER: ubuntu:20.04
container: ${{ matrix.CONTAINER }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: remove esm repos
if: ${{ matrix.CONTAINER == 'ubuntu:14.04' }}
run: sudo rm /etc/apt/sources.list.d/ubuntu-esm-infra-trusty.list ## fix Err https://esm.ubuntu.com trusty-infra-security/main amd64 Packages, gnutls_handshake() failed: Handshake failed
- name: Run test
shell: bash
run: |
set -x
export ROS_DISTRO=${{ matrix.ROS_DISTRO }}
ls -al
. ./.travis.sh