-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathazure-pipelines.yml
47 lines (40 loc) · 1.06 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#resources:
# repositories:
# - repository: portable-stimulus
# type: github
# endpoint: PSSTools
# name: mballance/portable-stimulus
trigger:
- master
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-latest'
variables:
- name: build_num
value: $(Build.BuildNumber)
steps:
# - checkout: self
# - checkout: portable-stimulus
# path: sys/portable-stimulus
#
# - script: |
# git -c http.https://github.com/mballance/portable-stimulus.extraheader="AUTHORIZATION: basic $(GITAUTH)" clone https://github.com/mballance/portable-stimulus sys/portable-stimulus
# displayName: 'Checkout examples'
- script: |
sudo apt-get update
sudo apt-get install default-jdk uuid-dev python3-venv
displayName: 'Install JDK+Python'
- script: |
python3 -m pip install wheel twine
python3 -m pip install ivpm
displayName: 'Install Python tools'
- script: |
python3 -m ivpm update
displayName: 'Fetch dependencies'
- script: |
mkdir build
cd build
cmake ..
make VERBOSE=1
displayName: 'Build'