forked from BRAINSia/BRAINSTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
32 lines (27 loc) · 851 Bytes
/
Copy pathazure-pipelines.yml
File metadata and controls
32 lines (27 loc) · 851 Bytes
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
# C/C++ with GCC
# Build your C/C++ project with GCC using make.
# Add steps that publish test results, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc
trigger:
branches:
include:
- master
- release*
jobs:
- job: Linux
timeoutInMinutes: 0
cancelTimeoutInMinutes: 300
pool:
vmImage: ubuntu-16.04
steps:
- script: |
set -x
git clone -b dashboard --single-branch https://github.com/BRAINSia/BRAINSTools.git BRAINSTools-dashboard
sudo pip3 install ninja
c++ --version
cmake --version
export BUILD_EXAMPLES=OFF
export CTEST_BUILD_CONFIGURATION=MinSizeRel
ctest -S BRAINSTools-dashboard/azure_dashboard.cmake -VV -j 4
displayName: Build and Test
workingDirectory: $(Agent.BuildDirectory)