forked from ballerina-platform/ballerina-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
42 lines (42 loc) · 948 Bytes
/
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
31
32
33
34
35
36
37
38
39
40
41
42
jobs:
- job: macOS
pool:
vmImage: 'macOS 10.13'
timeoutInMinutes: 150
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.12.0'
- script: |
sudo ulimit -n 65535
mvn -v
mvn clean install
displayName: 'Build Ballerina'
- job: Linux
pool:
vmImage: 'Ubuntu 16.04'
timeoutInMinutes: 150
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.12.0'
- script: |
sudo ulimit -n 65535
wget http://www-eu.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
tar xzf apache-maven-3.5.4-bin.tar.gz
export PATH=$(pwd)/apache-maven-3.5.4/bin:$PATH
mvn -v
mvn clean install
displayName: 'Build Ballerina'
- job: Windows
pool:
vmImage: 'VS2017-Win2016'
timeoutInMinutes: 150
steps:
- task: NodeTool@0
inputs:
versionSpec: '8.12.0'
- script: |
mvn -v
mvn clean install
displayName: 'Build Ballerina'