forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 0
179 lines (171 loc) · 5.7 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
name: test environment setup
on:
schedule:
- cron: '0 0 * * 6' # every saturday at midnight
workflow_dispatch:
push:
paths:
- '.github/workflows/test_environment.yml'
- 'Tools/environment_install/**'
pull_request:
paths:
- '.github/workflows/test_environment.yml'
- 'Tools/environment_install/**'
concurrency:
group: ci-${{github.workflow}}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.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: focal
- os: ubuntu
name: jammy
- os: ubuntu
name: mantic
- os: ubuntu
name: noble
- os: archlinux
name: latest
- os: debian
name: bookworm
- 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 -Syu --noconfirm --needed git sudo
;;
esac
# git checkout the PR
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: test install environment ${{matrix.os}}.${{matrix.name}}
timeout-minutes: 60
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 ${GITHUB_WORKSPACE}
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
source $HOME/venv-ardupilot/bin/activate || true
git config --global --add safe.directory /__w/ardupilot/ardupilot
./waf configure
./waf rover
- name: test build Chibios ${{matrix.os}}.${{matrix.name}}
if: matrix.os != 'alpine'
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
source $HOME/venv-ardupilot/bin/activate || true
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
build-alpine: # special case for alpine as it doesn't have bash by default
runs-on: ubuntu-22.04
container:
image: alpine:latest
options: --privileged
steps:
- name: Install Git
timeout-minutes: 30
env:
DEBIAN_FRONTEND: noninteractive
TZ: Europe/Paris
run: |
apk update && apk add --no-cache git
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: test install environment alpine
timeout-minutes: 60
env:
DISABLE_MAVNATIVE: True
TZ: Europe/Paris
SKIP_AP_GIT_CHECK: 1
run: |
PATH="/github/home/.local/bin:$PATH"
Tools/environment_install/install-prereqs-alpine.sh
- name: test build STIL alpine
env:
DISABLE_MAVNATIVE: True
TZ: Europe/Paris
run: |
git config --global --add safe.directory ${GITHUB_WORKSPACE}
git config --global --add safe.directory /__w/ardupilot/ardupilot
./waf configure
./waf rover