-
Notifications
You must be signed in to change notification settings - Fork 12
feat: new lsm module #249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feat/cosmoshub-current
Are you sure you want to change the base?
feat: new lsm module #249
Conversation
c92e71e
to
10853c0
Compare
10853c0
to
6d05eae
Compare
case "$ARCH" in \ | ||
x86_64) PLATFORM="x86_64" ;; \ | ||
aarch64) PLATFORM="aarch64" ;; \ | ||
*) echo "Unsupported architecture: $ARCH" && exit 1 ;; \ | ||
esac && \ | ||
TARNAME="hermes-${HERMES_VERSION}-${PLATFORM}-unknown-linux-gnu.tar.gz" && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we should compare it with aarch64
only
case "$ARCH" in \ | ||
x86_64) PLATFORM="x86_64" ;; \ | ||
aarch64) PLATFORM="aarch64" ;; \ | ||
*) echo "Unsupported architecture: $ARCH" && exit 1 ;; \ | ||
esac && \ | ||
TARNAME="hermes-${HERMES_VERSION}-${PLATFORM}-unknown-linux-gnu.tar.gz" && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here as well
if [ "$ARCH" = "arm64" ] || [ "$ARCH" = "aarch64" ]; then | ||
DOCKERFILE="Dockerfile.aarch64" | ||
else | ||
DOCKERFILE="Dockerfile.x86_64" | ||
fi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
btw the only difference between these two containers are in base image (ubuntu:24.04 vs ubuntu:20.04)
Maybe we can build docker based on common platform and remove docker containers selection?
No description provided.