-
Notifications
You must be signed in to change notification settings - Fork 8
51 lines (49 loc) · 1.36 KB
/
test-scripts-eol.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
44
45
46
47
48
49
50
51
name: Test Scripts (EOL)
on:
push:
branches:
- master
paths:
- ".github/workflows/test-scripts-eol.yml"
- "ros-kinetic-**.sh"
- "ros-melodic-**.sh"
pull_request:
branches:
- master
paths:
- ".github/workflows/test-scripts-eol.yml"
- "ros-kinetic-**.sh"
- "ros-melodic-**.sh"
schedule:
- cron: "5 1 * * 6" # Weekly on Saturdays at 01:05(GMT)
jobs:
# kinetic:
# runs-on: ubuntu-latest
# container: ubuntu:xenial
# strategy:
# matrix:
# package: [desktop, ros-base]
# env:
# ROS_DISTRO: kinetic
# steps:
# - uses: actions/checkout@v3
# - name: Test
# run: |
# apt-get update
# DEBIAN_FRONTEND=noninteractive apt-get install -yq wget curl git build-essential vim sudo lsb-release locales bash-completion tzdata
# ./ros-${ROS_DISTRO}-${{ matrix.package }}.sh
melodic:
runs-on: ubuntu-latest
container: ubuntu:bionic
strategy:
matrix:
package: [desktop, ros-base]
env:
ROS_DISTRO: melodic
steps:
- uses: actions/checkout@v3
- name: Test
run: |
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get install -yq wget curl git build-essential vim sudo lsb-release locales bash-completion tzdata
./ros-${ROS_DISTRO}-${{ matrix.package }}-main.sh