Skip to content

Commit

Permalink
Missing script
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtropets committed Jan 30, 2025
1 parent 5e41bb4 commit 58da68f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions scripts/install-azure-linux-deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache 2.0 License.

set -ex

gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
tdnf -y update

# Source control
tdnf -y install ca-certificates git

# Build tools
tdnf -y install build-essential clang cmake ninja-build which

# libc++
tdnf -y install libcxx-devel llvm-libunwind-devel llvm-libunwind-static

# Dependencies
tdnf -y install openssl-devel libuv-devel nghttp2-devel curl-devel

# Test dependencies
tdnf -y install libarrow-devel parquet-libs-devel lldb npm jq expect procps

# Install CDDL via rubygems
tdnf -y install rubygems
gem install cddl

0 comments on commit 58da68f

Please sign in to comment.