-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (37 loc) · 1.23 KB
/
docker-compose-e2e-setup.yaml
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
name: "Docker Compose | E2E Test - Setup"
on:
push:
branches:
- main
- 4-aa-migrate-docker-compose
paths:
- docker-compose/versions/**
jobs:
test:
name: ${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: Camunda 8.3 - Full
camunda-version: "8.3"
compose-args: "-f docker-compose.yaml -f docker-compose-web-modeler.yaml"
e2e-test-enabled: true
- name: Camunda 8.4 - Full
camunda-version: "8.4"
compose-args: "-f docker-compose.yaml -f docker-compose-web-modeler.yaml"
e2e-test-enabled: true
- name: Camunda 8.5 - Full
camunda-version: "8.5"
compose-args: "-f docker-compose.yaml -f docker-compose-web-modeler.yaml"
e2e-test-enabled: true
- name: Camunda 8.6 - Full
camunda-version: "8.6"
compose-args: "--profile full"
e2e-test-enabled: true
uses: ./.github/workflows/docker-compose-template-e2e-setup.yaml
secrets: inherit
with:
camunda-version: ${{ matrix.camunda-version }}
compose-args: ${{ matrix.compose-args }}
e2e-test-enabled: ${{ matrix.e2e-test-enabled }}