Skip to content

Commit

Permalink
chore: Kupo 2.9.0, yaci store 0.1.0-rc5, node 9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
satran004 committed Aug 5, 2024
1 parent 48e7e84 commit 553b7ea
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion applications/cli/Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ java-setup:
docker-build:
FROM ubuntu:22.04
ENV JAVA_HOME=/opt/java/openjdk
ENV STORE_VERSION=0.1.0-rc4
ENV STORE_VERSION=0.1.0-rc5

ARG TARGETOS
ARG TARGETARCH
Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-amd64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
file=cardano-node-9.0.0-linux.tar.gz
wget https://github.com/IntersectMBO/cardano-node/releases/download/9.0.0/cardano-node-9.0.0-linux.tar.gz
file=cardano-node-9.1.0-linux.tar.gz
wget https://github.com/IntersectMBO/cardano-node/releases/download/9.1.0/cardano-node-9.1.0-linux.tar.gz

mkdir /app/cardano-bin

Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-arm64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
file=cardano-9_0_0-aarch64-static-musl-ghc_966.tar.zst
dir=cardano-9_0_0-aarch64-static-musl-ghc_966
file=cardano-9_1_0-aarch64-static-musl-ghc_966.tar.zst
dir=cardano-9_1_0-aarch64-static-musl-ghc_966
wget https://github.com/armada-alliance/cardano-node-binaries/raw/main/static-binaries/$file?raw=true -O - | tar -I zstd -xv

#unzip $file
Expand Down
20 changes: 16 additions & 4 deletions applications/cli/docker/download-kupo.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
#!/bin/bash

ARCH=$1
# Assign the architecture based on user input and determine the correct suffix
case $1 in
amd64)
ARCH="x86_64"
;;
arm64)
ARCH="aarch64"
;;
*)
echo "Error: Invalid architecture specified. Use 'amd64' or 'arm64'."
exit 1
;;
esac

file=kupo-2.8.0-$ARCH-Linux.tar.gz
wget https://github.com/CardanoSolutions/kupo/releases/download/v2.8/$file
file=kupo-v2.9.0-$ARCH-linux.zip
wget https://github.com/CardanoSolutions/kupo/releases/download/v2.9/$file

mkdir /app/kupo
unzip $file -d /app/kupo

tar zxvf $file -C /app/kupo
chmod +x /app/kupo/bin/kupo

rm $file

0 comments on commit 553b7ea

Please sign in to comment.