grin/.ci/install.yml
2020-02-04 15:40:37 -05:00

11 lines
No EOL
387 B
YAML

steps:
- script: |
git apply .ci/win.patch
choco install -y llvm
displayName: Windows Install LLVM
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
sudo apt-get update -yqq
sudo apt-get install -yqq --no-install-recommends libncursesw5-dev
displayName: Linux Install Dependencies
condition: eq( variables['Agent.OS'], 'Linux' )