Commit b1697ad3 authored by Mark Tyneway's avatar Mark Tyneway

ci: simplify integration test matrix

parent bd78a9bd
...@@ -21,10 +21,11 @@ jobs: ...@@ -21,10 +21,11 @@ jobs:
strategy: strategy:
matrix: matrix:
batch-submitter: batch-submitter:
- ts-batch-submitter-legacy - ts-batch-submitter
- go-batch-submitter-legacy - go-batch-submitter
- ts-batch-submitter-zlib batch-type:
- go-batch-submitter-zlib - zlib
- legacy
env: env:
DOCKER_BUILDKIT: 1 DOCKER_BUILDKIT: 1
COMPOSE_DOCKER_CLI_BUILD: 1 COMPOSE_DOCKER_CLI_BUILD: 1
...@@ -46,15 +47,13 @@ jobs: ...@@ -46,15 +47,13 @@ jobs:
- name: Set conditional env vars - name: Set conditional env vars
run: | run: |
echo "BATCH_SUBMITTER_SEQUENCER_BATCH_TYPE=zlib" >> $GITHUB_ENV echo "BATCH_SUBMITTER_SEQUENCER_BATCH_TYPE=${{ matrix.batch-type }}" >> $GITHUB_ENV
if: endsWith(matrix.batch-submitter, '-zlib')
- name: Bring the stack up - name: Bring the stack up
working-directory: ./ops working-directory: ./ops
run: | run: |
SERVICE=$(echo ${{ matrix.batch-submitter }} | cut -c1-18)
./scripts/stats.sh & ./scripts/stats.sh &
docker-compose -f docker-compose.yml -f docker-compose.$SERVICE.yml up -d docker-compose -f docker-compose.yml -f docker-compose.${{ matrix.batch-submitter }}.yml up -d
- name: Wait for the Sequencer node - name: Wait for the Sequencer node
working-directory: ./ops working-directory: ./ops
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment