Skip to content

Commit

Permalink
CI: Align GHA recipes about CrateDB container configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Feb 7, 2024
1 parent 1e0b78a commit 7ad3826
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/framework-apache-superset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ concurrency:

jobs:

tests:
test:
name: "
Superset: ${{ matrix.superset-version }}
Python: ${{ matrix.python-version }}
CrateDB: ${{ matrix.cratedb-version }}
on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -37,17 +42,17 @@ jobs:
os: [ ubuntu-22.04 ]
superset-version: [ "2.*", "3.*" ]
python-version: [ "3.11" ]
cratedb-version: [ 'nightly' ]

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
env:
CRATE_HEAP_SIZE: 4g

name: Superset ${{ matrix.superset-version }}, Python ${{ matrix.python-version }}
steps:

- name: Acquire sources
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lang-java-jooq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lang-java-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lang-php-amphp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lang-php-pdo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lang-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ml-automl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ml-mlflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

services:
cratedb:
image: crate/crate:nightly
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stack-kafka-flink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ concurrency:

jobs:

tests:
test:
runs-on: ${{ matrix.os }}

strategy:
Expand Down

0 comments on commit 7ad3826

Please sign in to comment.