forked from lfortran/lfortran
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
30 lines (29 loc) · 1 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Azure Pipelines CI
# Documentation of the syntax:
# https://aka.ms/yaml
jobs:
- job: macOS
pool:
# List of preinstalled software on the macOS image:
# https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md
vmImage: 'macOS-10.15'
steps:
- script: ci/azure_status.sh running
env:
TOKEN_STATUS: $(TOKEN_STATUS)
COMMIT_ID: $(Build.SourceVersion)
BUILD_ID: $(Build.BuildId)
displayName: Set commit status to running
- bash: echo "##vso[task.prependpath]$CONDA/bin"
displayName: Add conda to PATH
- bash: sudo chown -R $USER $CONDA
displayName: Take ownership of conda installation
- script: ci/azure_install_macos.sh
displayName: 'Install prerequisites'
- script: ci/azure_status.sh
condition: always()
env:
TOKEN_STATUS: $(TOKEN_STATUS)
COMMIT_ID: $(Build.SourceVersion)
BUILD_ID: $(Build.BuildId)
displayName: Set commit status (success/failed)