Skip to content

Commit 845cab7

Browse files
committed
drop progress bar from wget downloads; rename matrix vars
1 parent 04a059f commit 845cab7

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.github/workflows/python-package.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
build:
1818

1919
runs-on: ubuntu-latest
20-
name: Tests on ${{ matrix.python-version }}
20+
name: Test: python ${{ matrix.python }} / kafka ${{ matrix.kafka }}
2121
continue-on-error: ${{ matrix.experimental || false }}
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
kafka-version:
25+
kafka:
2626
- "0.8.2.2"
2727
- "0.9.0.1"
2828
- "0.10.2.2"
@@ -31,30 +31,30 @@ jobs:
3131
- "2.4.0"
3232
- "2.5.0"
3333
- "2.6.0"
34-
python-version:
34+
python:
3535
- "3.12"
3636
include:
37-
#- python-version: "pypy3.9"
38-
# kafka-version: "2.6.0"
37+
#- python: "pypy3.9"
38+
# kafka: "2.6.0"
3939
# experimental: true
40-
#- python-version: "~3.13.0-0"
41-
# kafka-version: "2.6.0"
40+
#- python: "~3.13.0-0"
41+
# kafka: "2.6.0"
4242
# experimental: true
43-
- python-version: "3.8"
44-
kafka-version: "2.6.0"
45-
- python-version: "3.9"
46-
kafka-version: "2.6.0"
47-
- python-version: "3.10"
48-
kafka-version: "2.6.0"
49-
- python-version: "3.11"
50-
kafka-version: "2.6.0"
43+
- python: "3.8"
44+
kafka: "2.6.0"
45+
- python: "3.9"
46+
kafka: "2.6.0"
47+
- python: "3.10"
48+
kafka: "2.6.0"
49+
- python: "3.11"
50+
kafka: "2.6.0"
5151

5252
steps:
5353
- uses: actions/checkout@v4
54-
- name: Set up Python ${{ matrix.python-version }}
54+
- name: Set up Python ${{ matrix.python }}
5555
uses: actions/setup-python@v5
5656
with:
57-
python-version: ${{ matrix.python-version }}
57+
python-version: ${{ matrix.python }}
5858
cache: pip
5959
cache-dependency-path: |
6060
requirements-dev.txt
@@ -75,9 +75,9 @@ jobs:
7575
run: ./build_integration.sh
7676
env:
7777
PLATFORM: ${{ matrix.platform }}
78-
KAFKA_VERSION: ${{ matrix.kafka_version }}
78+
KAFKA_VERSION: ${{ matrix.kafka }}
7979
- name: Test with tox
8080
run: tox
8181
env:
8282
PLATFORM: ${{ matrix.platform }}
83-
KAFKA_VERSION: ${{ matrix.kafka_version }}
83+
KAFKA_VERSION: ${{ matrix.kafka }}

build_integration.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pushd servers
4848
echo "Downloading kafka ${kafka} tarball"
4949
TARBALL=${DIST_BASE_URL}${kafka}/${KAFKA_ARTIFACT}
5050
if command -v wget 2>/dev/null; then
51-
wget -N $TARBALL
51+
wget -nv -N $TARBALL
5252
else
5353
echo "wget not found... using curl"
5454
curl -f $TARBALL -o ${KAFKA_ARTIFACT}

0 commit comments

Comments
 (0)