Skip to content

Commit 1e037b8

Browse files
committed
fix untaring the file
1 parent cdb628d commit 1e037b8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/ci_build_test.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -131,28 +131,28 @@ jobs:
131131
include:
132132
- kafka_version: "3.5.1"
133133
kafka_package: "kafka_2.12-3.5.1.tgz"
134-
confluent_version: "7.5"
135-
confluent_package: "confluent-community-7.5.9"
134+
confluent_major_version: "7.5"
135+
confluent_package_version: "7.5.9"
136136
- kafka_version: "3.6.2"
137137
kafka_package: "kafka_2.12-3.6.2.tgz"
138-
confluent_version: "7.6"
139-
confluent_package: "confluent-community-7.6.6"
138+
confluent_major_version: "7.6"
139+
confluent_package_version: "7.6.6"
140140
- kafka_version: "3.7.2"
141141
kafka_package: "kafka_2.12-3.7.2.tgz"
142-
confluent_version: "7.7"
143-
confluent_package: "confluent-community-7.7.4"
142+
confluent_major_version: "7.7"
143+
confluent_package_version: "7.7.4"
144144
- kafka_version: "3.8.1"
145145
kafka_package: "kafka_2.12-3.8.1.tgz"
146-
confluent_version: "7.8"
147-
confluent_package: "confluent-community-7.8.3"
146+
confluent_major_version: "7.8"
147+
confluent_package_version: "7.8.3"
148148
- kafka_version: "3.9.0"
149149
kafka_package: "kafka_2.12-3.9.0.tgz"
150-
confluent_version: "7.9"
151-
confluent_package: "confluent-community-7.9.2"
150+
confluent_major_version: "7.9"
151+
confluent_package_version: "7.9.2"
152152
- kafka_version: "4.0.0"
153153
kafka_package: "kafka_2.13-4.0.0.tgz"
154-
confluent_version: "8.0"
155-
confluent_package: "confluent-community-8.0.0"
154+
confluent_major_version: "8.0"
155+
confluent_package_version: "8.0.0"
156156
env:
157157
CI_SPLUNK_VERSION: "9.0.2"
158158
CI_SPLUNK_FILENAME: splunk-9.0.2-17e00c557dc1-Linux-x86_64.tgz
@@ -241,9 +241,9 @@ jobs:
241241

242242
- name: Up the Schema Registry
243243
run: |
244-
cd /tmp && wget https://packages.confluent.io/archive/${{ matrix.confluent_version }}/${{ matrix.confluent_package }}.tar.gz
245-
sudo tar xzf ${{ matrix.confluent_package }}.tar.gz
246-
cd ${{ matrix.confluent_package }}
244+
cd /tmp && wget https://packages.confluent.io/archive/${{ matrix.confluent_major_version }}/confluent-community-${{ matrix.confluent_package_version }}.tar.gz
245+
sudo tar xzf confluent-community-${{ matrix.confluent_package_version }}.tar.gz
246+
cd confluent-${{ matrix.confluent_package_version }}
247247
bin/schema-registry-start ./etc/schema-registry/schema-registry.properties &
248248
249249
- name: Register the protobuf schema

0 commit comments

Comments
 (0)