mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
.github: use fixed revision for docker dev containers
This commit is contained in:
parent
b90166ab97
commit
47f8694a6e
2
.github/workflows/test_ccache.yml
vendored
2
.github/workflows/test_ccache.yml
vendored
@ -122,7 +122,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
2
.github/workflows/test_chibios.yml
vendored
2
.github/workflows/test_chibios.yml
vendored
@ -130,7 +130,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
2
.github/workflows/test_coverage.yml
vendored
2
.github/workflows/test_coverage.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-${{ matrix.type }}:latest
|
||||
image: ardupilot/ardupilot-dev-${{ matrix.type }}:v0.0.29
|
||||
options: --privileged
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
2
.github/workflows/test_linux_sbc.yml
vendored
2
.github/workflows/test_linux_sbc.yml
vendored
@ -131,7 +131,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
2
.github/workflows/test_replay.yml
vendored
2
.github/workflows/test_replay.yml
vendored
@ -144,7 +144,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
2
.github/workflows/test_scripting.yml
vendored
2
.github/workflows/test_scripting.yml
vendored
@ -22,7 +22,7 @@ concurrency:
|
||||
jobs:
|
||||
test-scripting:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-base:latest
|
||||
container: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
steps:
|
||||
# git checkout the PR
|
||||
- uses: actions/checkout@v3
|
||||
|
2
.github/workflows/test_scripts.yml
vendored
2
.github/workflows/test_scripts.yml
vendored
@ -9,7 +9,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-base:latest
|
||||
container: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
8
.github/workflows/test_sitl_copter.yml
vendored
8
.github/workflows/test_sitl_copter.yml
vendored
@ -157,7 +157,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
@ -203,7 +203,7 @@ jobs:
|
||||
needs: build # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-base:latest
|
||||
image: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
options: --privileged --cap-add=SYS_PTRACE --security-opt apparmor=unconfined --security-opt seccomp=unconfined
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
@ -271,7 +271,7 @@ jobs:
|
||||
build-gcc-heli:
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-base:latest
|
||||
image: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
options: --privileged --cap-add=SYS_PTRACE --security-opt apparmor=unconfined --security-opt seccomp=unconfined
|
||||
steps:
|
||||
# git checkout the PR
|
||||
@ -306,7 +306,7 @@ jobs:
|
||||
autotest-heli:
|
||||
needs: build-gcc-heli # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-base:latest
|
||||
container: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
4
.github/workflows/test_sitl_periph.yml
vendored
4
.github/workflows/test_sitl_periph.yml
vendored
@ -156,7 +156,7 @@ concurrency:
|
||||
jobs:
|
||||
build-gcc-ap_periph:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-periph:latest
|
||||
container: ardupilot/ardupilot-dev-periph:v0.0.29
|
||||
steps:
|
||||
# git checkout the PR
|
||||
- uses: actions/checkout@v3
|
||||
@ -197,7 +197,7 @@ jobs:
|
||||
needs: build-gcc-ap_periph # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-periph:latest
|
||||
image: ardupilot/ardupilot-dev-periph:v0.0.29
|
||||
options: --privileged
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
4
.github/workflows/test_sitl_plane.yml
vendored
4
.github/workflows/test_sitl_plane.yml
vendored
@ -158,7 +158,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
@ -204,7 +204,7 @@ jobs:
|
||||
needs: build # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-base:latest
|
||||
image: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
options: --privileged --cap-add=SYS_PTRACE --security-opt apparmor=unconfined --security-opt seccomp=unconfined
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
4
.github/workflows/test_sitl_rover.yml
vendored
4
.github/workflows/test_sitl_rover.yml
vendored
@ -157,7 +157,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
@ -203,7 +203,7 @@ jobs:
|
||||
needs: build # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-base:latest
|
||||
image: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
options: --privileged --cap-add=SYS_PTRACE --security-opt apparmor=unconfined --security-opt seccomp=unconfined
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
4
.github/workflows/test_sitl_sub.yml
vendored
4
.github/workflows/test_sitl_sub.yml
vendored
@ -160,7 +160,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
@ -206,7 +206,7 @@ jobs:
|
||||
needs: build # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-base:latest
|
||||
image: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
options: --privileged --cap-add=SYS_PTRACE --security-opt apparmor=unconfined --security-opt seccomp=unconfined
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
4
.github/workflows/test_sitl_tracker.yml
vendored
4
.github/workflows/test_sitl_tracker.yml
vendored
@ -160,7 +160,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
@ -206,7 +206,7 @@ jobs:
|
||||
needs: build # don't try to launch the tests matrix if it doesn't build first, profit from caching for fast build
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-base:latest
|
||||
image: ardupilot/ardupilot-dev-base:v0.0.29
|
||||
options: --privileged --cap-add=SYS_PTRACE --security-opt apparmor=unconfined --security-opt seccomp=unconfined
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
2
.github/workflows/test_size.yml
vendored
2
.github/workflows/test_size.yml
vendored
@ -59,7 +59,7 @@ concurrency:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
container: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
matrix:
|
||||
|
2
.github/workflows/test_unit_tests.yml
vendored
2
.github/workflows/test_unit_tests.yml
vendored
@ -97,7 +97,7 @@ jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:latest
|
||||
image: ardupilot/ardupilot-dev-${{ matrix.toolchain }}:v0.0.29
|
||||
options: --user 1001
|
||||
strategy:
|
||||
fail-fast: false # don't cancel if a job from the matrix fails
|
||||
|
Loading…
Reference in New Issue
Block a user