From 43440b9797f47a1a3019336de48daf07c03d399b Mon Sep 17 00:00:00 2001 From: TSC21 Date: Sun, 29 Mar 2020 19:11:22 +0100 Subject: [PATCH] ci: github: sitl_tests: add matrix for parallel build in Ubuntu Bionic and Focal --- .github/workflows/sitl_tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sitl_tests.yml b/.github/workflows/sitl_tests.yml index 314351713a..9018bc8fa2 100644 --- a/.github/workflows/sitl_tests.yml +++ b/.github/workflows/sitl_tests.yml @@ -11,7 +11,13 @@ on: jobs: build: runs-on: ubuntu-latest - container: px4io/px4-dev-simulation-bionic:2020-03-16 + strategy: + matrix: + ubuntu_release: [ + bionic, + focal + ] + container: px4io/px4-dev-simulation-${{ matrix.ubuntu_release }}:2020-03-29 steps: - uses: actions/checkout@v1 with: