forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 24
139 lines (132 loc) · 4.46 KB
/
test_environment.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: test environment setup
on:
schedule:
- cron: '0 0 * * 6' # every saturday at midnight
workflow_dispatch:
push:
paths:
- '.github/workflows/test_environment.yml'
- 'Tools/scripts/environment_install/**'
pull_request:
paths:
- '.github/workflows/test_environment.yml'
- 'Tools/scripts/environment_install/**'
concurrency:
group: ci-${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-20.04
container:
image: ${{matrix.os}}:${{matrix.name}}
options: --privileged
strategy:
fail-fast: false # don't cancel if a job from the matrix fails
matrix:
include:
- os: ubuntu
name: bionic
- os: ubuntu
name: focal
- os: ubuntu
name: jammy
- os: ubuntu
name: lunar
- os: archlinux
name: latest
- os: debian
name: bullseye
- os: debian
name: buster
steps:
- name: Install Git
timeout-minutes: 30
env:
DEBIAN_FRONTEND: noninteractive
TZ: Europe/Paris
shell: 'script -q -e -c "bash {0}"'
run: |
case ${{matrix.os}} in
*"ubuntu"*)
apt-get update && apt-get install --no-install-recommends -qy \
lsb-release \
sudo \
git \
software-properties-common
add-apt-repository ppa:git-core/ppa -y
apt-get update && apt-get install --no-install-recommends -qy git
;;
*"debian"*)
apt-get update && apt-get install --no-install-recommends -qy \
lsb-release \
sudo \
git \
software-properties-common
;;
*"archlinux"*)
pacman -Sy --noconfirm --needed git sudo
;;
esac
# git checkout the PR
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: test install environment ${{matrix.os}}.${{matrix.name}}
timeout-minutes: 30
env:
DISABLE_MAVNATIVE: True
DEBIAN_FRONTEND: noninteractive
TZ: Europe/Paris
SKIP_AP_GIT_CHECK: 1
shell: 'script -q -e -c "bash {0}"'
run: |
PATH="/github/home/.local/bin:$PATH"
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
sed -i 's/\$EUID/\$ID/' Tools/environment_install/install-prereqs-ubuntu.sh
sed -i 's/sudo usermod/\#sudo usermod/' Tools/environment_install/install-prereqs-ubuntu.sh
sed -i 's/sudo usermod/\#sudo usermod/' Tools/environment_install/install-prereqs-arch.sh
case ${{matrix.os}} in
*"ubuntu"*)
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
Tools/environment_install/install-prereqs-ubuntu.sh -qy
;;
*"debian"*)
Tools/environment_install/install-prereqs-ubuntu.sh -qy
;;
*"archlinux"*)
cp /etc/skel/.bashrc /root
cp /etc/skel/.bashrc /github/home
git config --global --add safe.directory /__w/ardupilot/ardupilot
Tools/environment_install/install-prereqs-arch.sh -qy
;;
esac
- name: test build STIL ${{matrix.os}}.${{matrix.name}}
env:
DISABLE_MAVNATIVE: True
DEBIAN_FRONTEND: noninteractive
TZ: Europe/Paris
shell: 'script -q -e -c "bash {0}"'
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
source ~/.bashrc
git config --global --add safe.directory /__w/ardupilot/ardupilot
./waf configure
./waf rover
- name: test build Chibios ${{matrix.os}}.${{matrix.name}}
env:
DISABLE_MAVNATIVE: True
DEBIAN_FRONTEND: noninteractive
TZ: Europe/Paris
shell: 'script -q -e -c "bash {0}"'
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
source ~/.bashrc
case ${{matrix.os}} in
*"archlinux"*)
export PATH=/opt/gcc-arm-none-eabi-10-2020-q4-major/bin:$PATH
export PATH=/__w/ardupilot/ardupilot/ardupilot/Tools/autotest:$PATH
;;
esac
git config --global --add safe.directory /__w/ardupilot/ardupilot
./waf configure --board CubeOrange
./waf plane