-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e41bb4
commit 58da68f
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |