Skip to content

Commit

Permalink
add script
Browse files Browse the repository at this point in the history
  • Loading branch information
B1ueber2y committed Nov 24, 2024
1 parent fcfc915 commit 94dab59
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions ci/install-limap-almalinux.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash
set -e -x
uname -a
CURRDIR=$(pwd)

export PATH="/usr/bin"

# Install toolchain under AlmaLinux 8,
# see https://almalinux.pkgs.org/8/almalinux-appstream-x86_64/
yum install -y \
gcc-toolset-12-gcc \
gcc-toolset-12-gcc-c++ \
gcc-toolset-12-gcc-gfortran \
scl-utils \
git \
cmake3 \
ninja-build \
curl \
zip \
unzip \
tar

source scl_source enable gcc-toolset-12

git clone https://github.com/microsoft/vcpkg ${VCPKG_INSTALLATION_ROOT}
cd ${VCPKG_INSTALLATION_ROOT}
git checkout ${VCPKG_COMMIT_ID}
./bootstrap-vcpkg.sh
./vcpkg integrate install

0 comments on commit 94dab59

Please sign in to comment.