Skip to content

Commit

Permalink
groups in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-shchetinin committed Jul 23, 2024
1 parent e84030e commit d352570
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,16 @@ concurrency:
cancel-in-progress: true
jobs:
unit:
name: PR check for YDB C++ SDK
runs-on: ubuntu-22.04
services:
ydb:
image: ydbplatform/local-ydb:latest
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
YDB_TABLE_ENABLE_PREPARED_DDL: true
options: '-h localhost'
concurrency:
group: unit-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
os: [ubuntu, macOS]
env:
OS: ${{ matrix.os }}-latest
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout PR
uses: actions/checkout@v3
Expand Down Expand Up @@ -63,11 +57,17 @@ jobs:
ctest -j32 --preset release-unit
integrtion:
name: PR check for YDB C++ SDK
runs-on: ubuntu-22.04
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:
ydb-version: [23.3, 24.1]
services:
ydb:
image: ydbplatform/local-ydb:latest
image: ydbplatform/local-ydb:${{ matrix.ydb-version }}
ports:
- 2135:2135
- 2136:2136
Expand Down

0 comments on commit d352570

Please sign in to comment.