Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@srmrych
* @srmrych
14 changes: 14 additions & 0 deletions share/ruby-build/3.3.10
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Detect distribution and version.
if [ -f /etc/os-release ]; then
. /etc/os-release
OS_DISTRO=$ID
OS_VERSION=$VERSION_ID
else
echo "Cannot determine distribution."
exit 1
fi

# Detect architecture
ARCH=$(uname -m)

install_package "ruby-3.3.10" "https://ruby.elastic-infra.com/${OS_DISTRO}/${OS_VERSION}/$ARCH/ruby-3.3.10.tar.gz" copy
14 changes: 14 additions & 0 deletions share/ruby-build/3.4.8
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Detect distribution and version.
if [ -f /etc/os-release ]; then
. /etc/os-release
OS_DISTRO=$ID
OS_VERSION=$VERSION_ID
else
echo "Cannot determine distribution."
exit 1
fi

# Detect architecture
ARCH=$(uname -m)

install_package "ruby-3.4.8" "https://ruby.elastic-infra.com/${OS_DISTRO}/${OS_VERSION}/$ARCH/ruby-3.4.8.tar.gz" copy