Skip to content

Commit 4c37af0

Browse files
authored
Merge pull request #164 from InfluxCommunity/ci/fix-matrix1
fix: matrix not run properly
2 parents 51c9a37 + 3641747 commit 4c37af0

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

.circleci/config.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ parameters:
88
executors:
99
docker-amd64-image:
1010
parameters:
11-
maven-image:
11+
python-image:
1212
type: string
1313
default: << pipeline.parameters.default-python-image >>
1414
docker:
15-
- image: <<parameters.maven-image>>
15+
- image: <<parameters.python-image>>
1616
- image: influxdb:3-core
1717
environment:
1818
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
1919
- INFLUXDB3_OBJECT_STORE=file
2020
- INFLUXDB3_DB_DIR=/var/lib/influxdb3/data
2121
docker-arm64-image:
2222
parameters:
23-
maven-image:
23+
python-image:
2424
type: string
2525
default: << pipeline.parameters.default-python-image >>
2626
docker:
27-
- image: <<parameters.maven-image>>
27+
- image: <<parameters.python-image>>
2828
- image: influxdb:3-core
2929
environment:
3030
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
@@ -96,20 +96,14 @@ jobs:
9696
type: string
9797
default: <<pipeline.parameters.default-python-image>>>>
9898
exe:
99-
type: executor
99+
type: string
100100
default: docker-amd64-image
101101
pytest-marker:
102102
type: string
103103
default: "not integration"
104-
docker:
105-
- image: << parameters.python-image >>
106-
environment:
107-
PIPENV_VENV_IN_PROJECT: true
108-
- image: influxdb:3-core
109-
environment:
110-
- INFLUXDB3_NODE_IDENTIFIER_PREFIX=node01
111-
- INFLUXDB3_OBJECT_STORE=file
112-
- INFLUXDB3_DB_DIR=/var/lib/influxdb3/data
104+
executor:
105+
name: << parameters.exe >>
106+
python-image: << parameters.python-image >>
113107
steps:
114108
- checkout
115109
- run:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
# 0.17.0 [unreleased]
44

5+
### CI
6+
7+
1. [#164](https://github.com/InfluxCommunity/influxdb3-python/pull/164): Fix pipelines not downloading the correct python images.
8+
59
## 0.16.0 [2025-09-15]
610

711
### Features

0 commit comments

Comments
 (0)