wasmer/.azure/install-llvm.yml

60 lines
2.5 KiB
YAML
Raw Normal View History

2019-08-10 22:32:09 +00:00
# This template installs LLVM (if doesn't exist in the systems)
steps:
- bash: |
set -ex
if [ -x "`command -v llvm-config`" ]; then
echo `command -v llvm-config` `llvm-config --version` installed
else
curl -O https://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-apple-darwin.tar.xz
tar xf clang+llvm-8.0.0-x86_64-apple-darwin.tar.xz
2019-08-10 22:48:56 +00:00
export LLVM_PATH="`pwd`/clang+llvm-8.0.0-x86_64-apple-darwin/"
echo "##vso[task.prependpath]$LLVM_PATH/bin"
echo "##vso[task.setvariable variable=LLVM_SYS_80_PREFIX]$LLVM_PATH"
2019-08-10 22:32:09 +00:00
fi
displayName: "Install LLVM (macOS)"
condition: eq(variables['Agent.OS'], 'Darwin')
- bash: |
set -ex
if [ -x "`command -v llvm-config`" ]; then
echo `command -v llvm-config` `llvm-config --version` installed
else
curl -O https://releases.llvm.org/8.0.0/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
tar xf clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz
2019-08-10 22:48:56 +00:00
export LLVM_PATH="`pwd`/clang+llvm-8.0.0-x86_64-linux-gnu-ubuntu-16.04/"
echo "##vso[task.prependpath]$LLVM_PATH/bin"
echo "##vso[task.setvariable variable=LLVM_SYS_80_PREFIX]$LLVM_PATH"
2019-08-10 22:32:09 +00:00
fi
displayName: "Install LLVM (Linux)"
condition: eq(variables['Agent.OS'], 'Linux')
2019-09-01 17:51:16 +00:00
# - bash: |
# set -ex
# if [ -x "`command -v llvm-config`" ]; then
# echo `command -v cmake` `llvm-config --version` installed
# else
# mkdir C:\projects\deps
# cd C:\projects\deps
# curl -OL https://github.com/wasmerio/windows-llvm-build/releases/download/v8.0.0/llvm-8.0.0-install.zip
# 7z x llvm-8.0.0-install.zip
# echo "##vso[task.prependpath]/c/projects/deps/llvm-8.0.0-install/bin"
# echo "##vso[task.setvariable variable=LLVM_SYS_80_PREFIX]C:\\projects\\deps\\llvm-8.0.0-install"
# fi
# displayName: "Install LLVM (Windows)"
# condition: eq(variables['Agent.OS'], 'Windows_NT')
- powershell: |
Invoke-WebRequest https://github.com/wasmerio/windows-llvm-build/releases/download/v8.0.0/llvm-8.0.0-install.zip
7z x llvm-8.0.0-install.zip
Write-Host "##vso[task.prependpath]$pwd/llvm-8.0.0-install/bin"
Write-Host "##vso[task.setvariable variable=LLVM_SYS_80_PREFIX;]$pwd/llvm-8.0.0-install/"
displayName: Install LLVM (Windows)
2019-08-10 22:32:09 +00:00
condition: eq(variables['Agent.OS'], 'Windows_NT')
- bash: |
set -ex
2019-08-25 08:03:54 +00:00
env
2019-08-10 22:32:09 +00:00
llvm-config --version
displayName: LLVM version