mirror of https://github.com/zulip/zulip.git
ci: Fix matrix definition for tests job.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
4b19863065
commit
16dedb08fd
|
@ -27,8 +27,6 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include_documentation_tests: [false]
|
|
||||||
include_frontend_tests: [false]
|
|
||||||
include:
|
include:
|
||||||
# Base images are built using `tools/ci/Dockerfile.prod.template`.
|
# Base images are built using `tools/ci/Dockerfile.prod.template`.
|
||||||
# The comments at the top explain how to build and upload these images.
|
# The comments at the top explain how to build and upload these images.
|
||||||
|
@ -36,16 +34,20 @@ jobs:
|
||||||
- docker_image: zulip/ci:focal
|
- docker_image: zulip/ci:focal
|
||||||
name: Ubuntu 20.04 (Python 3.8, backend + frontend)
|
name: Ubuntu 20.04 (Python 3.8, backend + frontend)
|
||||||
os: focal
|
os: focal
|
||||||
|
include_documentation_tests: false
|
||||||
include_frontend_tests: true
|
include_frontend_tests: true
|
||||||
# Debian 11 ships with Python 3.9.2.
|
# Debian 11 ships with Python 3.9.2.
|
||||||
- docker_image: zulip/ci:bullseye
|
- docker_image: zulip/ci:bullseye
|
||||||
name: Debian 11 (Python 3.9, backend + documentation)
|
name: Debian 11 (Python 3.9, backend + documentation)
|
||||||
os: bullseye
|
os: bullseye
|
||||||
include_documentation_tests: true
|
include_documentation_tests: true
|
||||||
|
include_frontend_tests: false
|
||||||
# Ubuntu 22.04 ships with Python 3.10.4.
|
# Ubuntu 22.04 ships with Python 3.10.4.
|
||||||
- docker_image: zulip/ci:jammy
|
- docker_image: zulip/ci:jammy
|
||||||
name: Ubuntu 22.04 (Python 3.10, backend)
|
name: Ubuntu 22.04 (Python 3.10, backend)
|
||||||
os: jammy
|
os: jammy
|
||||||
|
include_documentation_tests: false
|
||||||
|
include_frontend_tests: false
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
|
|
Loading…
Reference in New Issue