2021-10-04 11:51:28 -03:00
|
|
|
name: test environment setup
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 0 * * 6' # every saturday at midnight
|
2022-05-16 06:12:43 -03:00
|
|
|
workflow_dispatch:
|
2023-02-08 18:33:17 -04:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/test_environment.yml'
|
2023-08-18 10:45:44 -03:00
|
|
|
- 'Tools/environment_install/**'
|
2023-02-08 18:33:17 -04:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/test_environment.yml'
|
2023-08-18 10:45:44 -03:00
|
|
|
- 'Tools/environment_install/**'
|
2021-10-04 11:51:28 -03:00
|
|
|
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ci-${{github.workflow}}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-08-31 18:25:51 -03:00
|
|
|
runs-on: ubuntu-22.04
|
2021-10-04 11:51:28 -03:00
|
|
|
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
|
2023-03-22 11:04:31 -03:00
|
|
|
name: jammy
|
2023-05-02 08:05:09 -03:00
|
|
|
- os: ubuntu
|
|
|
|
name: lunar
|
2023-10-14 20:50:58 -03:00
|
|
|
- os: ubuntu
|
|
|
|
name: mantic
|
2021-10-04 11:51:28 -03:00
|
|
|
- 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"*)
|
2023-09-05 11:03:54 -03:00
|
|
|
pacman -Syu --noconfirm --needed git sudo
|
2021-10-04 11:51:28 -03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# git checkout the PR
|
2022-12-09 07:47:48 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-04 11:51:28 -03:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
- name: test install environment ${{matrix.os}}.${{matrix.name}}
|
2023-10-14 20:50:58 -03:00
|
|
|
timeout-minutes: 45
|
2021-10-04 11:51:28 -03:00
|
|
|
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
|
2022-06-30 11:48:15 -03:00
|
|
|
git config --global --add safe.directory /__w/ardupilot/ardupilot
|
2021-10-04 11:51:28 -03:00
|
|
|
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: |
|
2023-02-03 13:45:49 -04:00
|
|
|
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
2021-10-04 11:51:28 -03:00
|
|
|
source ~/.bashrc
|
2023-08-07 06:33:05 -03:00
|
|
|
source $HOME/venv-ardupilot/bin/activate || true
|
2022-05-16 06:12:43 -03:00
|
|
|
git config --global --add safe.directory /__w/ardupilot/ardupilot
|
2021-10-04 11:51:28 -03:00
|
|
|
./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: |
|
2023-02-03 13:45:49 -04:00
|
|
|
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
2021-10-04 11:51:28 -03:00
|
|
|
source ~/.bashrc
|
2023-08-07 06:33:05 -03:00
|
|
|
source $HOME/venv-ardupilot/bin/activate || true
|
2022-06-30 11:48:15 -03:00
|
|
|
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
|
2022-05-16 06:12:43 -03:00
|
|
|
git config --global --add safe.directory /__w/ardupilot/ardupilot
|
2021-10-04 11:51:28 -03:00
|
|
|
./waf configure --board CubeOrange
|
|
|
|
./waf plane
|