We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f78cb commit dd253aaCopy full SHA for dd253aa
.github/workflows/resilience.yml
@@ -23,6 +23,15 @@ jobs:
23
timeout-minutes: 20
24
runs-on: ubuntu-latest
25
26
+ strategy:
27
+ fail-fast: false
28
+ matrix:
29
+ include:
30
+ - docker-img: docker.io/arangodb/enterprise:3.11.7
31
+ compression: false
32
+ - docker-img: docker.io/arangodb/arangodb-preview:devel-nightly
33
+ compression: true
34
+
35
env:
36
TOXIPROXY_VERSION: v2.7.0
37
@@ -38,8 +47,8 @@ jobs:
38
47
run: ./docker/start_db.sh
39
48
40
49
STARTER_MODE: cluster
41
- DOCKER_IMAGE: docker.io/arangodb/arangodb-preview:devel-nightly
42
- COMPRESSION: true
50
+ DOCKER_IMAGE: ${{matrix.docker-img}}
51
+ COMPRESSION: ${{matrix.compression}}
43
52
- name: Info
44
53
run: mvn -version
45
54
- name: Start Toxiproxy
0 commit comments