about summary refs log tree commit diff
path: root/src/ci/scripts/install-msys2-packages.sh
blob: 3874a86e120b18381585ce1ba9fa8320fc1ce5a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

set -euo pipefail
IFS=$'\n\t'

source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"

if isWindows; then
    pacman -S --noconfirm --needed base-devel ca-certificates make diffutils tar \
        binutils

    # Make sure we use the native python interpreter instead of some msys equivalent
    # one way or another. The msys interpreters seem to have weird path conversions
    # baked in which break LLVM's build system one way or another, so let's use the
    # native version which keeps everything as native as possible.
    python_home="C:/hostedtoolcache/windows/Python/3.7.6/x64"
    cp "${python_home}/python.exe" "${python_home}/python3.exe"
    ciCommandAddPath "C:\\hostedtoolcache\\windows\\Python\\3.7.6\\x64"
fi