Skip to content

Commit 0f07b28

Browse files
authored
chore(stacks): add nessie (#2022)
1 parent 2aca775 commit 0f07b28

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

scripts/checker.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,12 @@
440440
"owner": "ClickHouse",
441441
"match": "^v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}.[0-9]{1,}-lts$",
442442
},
443+
"nessie": {
444+
"name": "nessie",
445+
"type": "github",
446+
"owner": "projectnessie",
447+
"match": "^nessie-[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}$",
448+
},
443449
}
444450

445451

stacks/nessie/build.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/bin/bash
2+
3+
# Load stack utils
4+
. /usr/bin/stack-utils
5+
6+
# Implement build function
7+
function build() {
8+
generate-stack-path
9+
VERSION=${STACK_VERSION}
10+
11+
curl -L -o nessie-quarkus-${STACK_VERSION}-runner.jar \
12+
https://github.com/projectnessie/nessie/releases/download/nessie-${STACK_VERSION}/nessie-quarkus-${STACK_VERSION}-runner.jar
13+
cp nessie-quarkus-${STACK_VERSION}-runner.jar "${DATA_DIR}"
14+
}
15+
16+
# call build stack
17+
build-stack "${1}"
18+

0 commit comments

Comments
 (0)