Shard id in execution result #1656
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration tests | |
| on: | |
| push: | |
| branches: [ master, feat/*, rc/* ] | |
| pull_request: | |
| branches: [ master, feat/*, rc/* ] | |
| jobs: | |
| test-0: | |
| name: Elasticsearch v7.16.2 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.6 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Get dependencies | |
| run: | | |
| go get -v -t -d ./... | |
| - name: Run integration tests with Elasticsearch `v7.16.2` | |
| run: make integration-tests ES_VERSION=7.16.2 | |
| test-1: | |
| name: Elasticsearch v7.17.8 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.6 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Get dependencies | |
| run: | | |
| go get -v -t -d ./... | |
| - name: Run integration tests with Elasticsearch `v7.17.8` | |
| run: make integration-tests ES_VERSION=7.17.8 | |
| test-2: | |
| name: Elasticsearch v8.16.0 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.6 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Get dependencies | |
| run: | | |
| go get -v -t -d ./... | |
| - name: Run integration tests with Elasticsearch `v8.16.0` | |
| run: make integration-tests ES_VERSION=8.16.0 | |
| test-3: | |
| name: OpenSearch v1.3.7 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.6 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Get dependencies | |
| run: | | |
| go get -v -t -d ./... | |
| - name: Run integration tests with OpenSearch `v1.3.7` | |
| run: make integration-tests-open-search OPEN_VERSION=1.3.7 | |
| test-4: | |
| name: OpenSearch v2.4.1 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.6 | |
| id: go | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Get dependencies | |
| run: | | |
| go get -v -t -d ./... | |
| - name: Run integration tests with OpenSearch `v2.4.1` | |
| run: make integration-tests-open-search OPEN_VERSION=2.4.1 |