Merge pull request #868 from ydb-platform/with-trace-retry #5129
This file contains 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: tests | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
unit: | |
concurrency: | |
group: unit-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }} | |
cancel-in-progress: true | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.17.x, 1.20.x, 1.21.x] | |
os: [ubuntu, windows, macOS] | |
env: | |
OS: ${{ matrix.os }}-latest | |
GO: ${{ matrix.go-version }} | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: true | |
- name: Test | |
run: go test -race -coverprofile unit.txt -covermode atomic ./... | |
- name: Upload coverage report to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./unit.txt | |
flags: unit,${{ matrix.os }},go-${{ matrix.go-version }} | |
name: unit | |
integration: | |
concurrency: | |
group: integration-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }}-${{ matrix.ydb-version }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go-version: [1.17.x, 1.20.x, 1.21.x] | |
ydb-version: [22.5, 23.1, 23.2, 23.3] | |
services: | |
ydb: | |
image: cr.yandex/yc/yandex-docker-local-ydb:${{ matrix.ydb-version }} | |
ports: | |
- 2135:2135 | |
- 2136:2136 | |
- 8765:8765 | |
volumes: | |
- /tmp/ydb_certs:/ydb_certs | |
env: | |
YDB_LOCAL_SURVIVE_RESTART: true | |
YDB_USE_IN_MEMORY_PDISKS: true | |
options: '-h localhost' | |
env: | |
OS: ubuntu-latest | |
GO: ${{ matrix.go-version }} | |
YDB_VERSION: ${{ matrix.ydb-version }} | |
YDB_CONNECTION_STRING: grpc://localhost:2136/local | |
YDB_CONNECTION_STRING_SECURE: grpcs://localhost:2135/local | |
YDB_SSL_ROOT_CERTIFICATES_FILE: /tmp/ydb_certs/ca.pem | |
YDB_SESSIONS_SHUTDOWN_URLS: http://localhost:8765/actors/kqp_proxy?force_shutdown=all | |
HIDE_APPLICATION_OUTPUT: 1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: true | |
- name: Integration test | |
run: go test -race -tags integration -coverpkg=./... -coverprofile integration-secure.txt -covermode atomic ./tests/integration | |
- name: Upload Test secure connection coverage report to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
file: ./integration-secure.txt | |
flags: integration,${{ matrix.os }},go-${{ matrix.go-version }},ydb-${{ matrix.ydb-version }} | |
name: integration-secure |