Skip to content

Commit

Permalink
Merge pull request #24312 from gousteris/24-2-backport-24297-and-24304
Browse files Browse the repository at this point in the history
[v24.2.x] ducktape: fix download of redpanda-data/ocsf-schema
  • Loading branch information
gousteris authored Nov 26, 2024
2 parents 52f7d9d + 729e884 commit e9dc86e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/docker/ducktape-deps/ocsf-server
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env bash
set -e

OCSF_SCHEMA_VERSION=1.0.0
OCSF_SCHEMA_VERSION=9608805fe0b61035cb821bb9068096fe47fed12d # tip of v1.0.0 branch
OCSF_SERVER_VERSION=d3b26de39df9eb33c6d63e34a126c77c0811c7a0

wget "https://github.com/redpanda-data/ocsf-schema/archive/refs/tags/v${OCSF_SCHEMA_VERSION}.tar.gz"
wget "https://github.com/redpanda-data/ocsf-schema/archive/${OCSF_SCHEMA_VERSION}.tar.gz"
wget "https://github.com/redpanda-data/ocsf-server/archive/${OCSF_SERVER_VERSION}.tar.gz"

tar -xvzf v${OCSF_SCHEMA_VERSION}.tar.gz
rm v${OCSF_SCHEMA_VERSION}.tar.gz
tar -xvzf ${OCSF_SCHEMA_VERSION}.tar.gz
rm ${OCSF_SCHEMA_VERSION}.tar.gz
mv ocsf-schema-${OCSF_SCHEMA_VERSION} /opt/ocsf-schema

tar -xvzf ${OCSF_SERVER_VERSION}.tar.gz
Expand Down

0 comments on commit e9dc86e

Please sign in to comment.