From 6ada9404e4252791aa8e0f5cf583447f9e9eef24 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 11:39:04 -0400 Subject: [PATCH 01/47] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..a78bf32a --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,20 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master +- hardik/CI_Test + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' From 9e39abebcf44e79decb5e6912879162ae270dab3 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 11:45:56 -0400 Subject: [PATCH 02/47] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a78bf32a..4df3f031 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,3 +18,11 @@ steps: echo Add other tasks to build, test, and deploy your project. echo See https://aka.ms/yaml displayName: 'Run a multi-line script' + + +- bash: | + mkdir build + cd build + cmake ../projects/cmake/ + make + displayName: 'Testing build on latest ubuntu' \ No newline at end of file From 911e2895d616cd8c8b55b7be961ce9f083dd06c8 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 12:16:12 -0400 Subject: [PATCH 03/47] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4df3f031..5bfe78da 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,8 +19,14 @@ steps: echo See https://aka.ms/yaml displayName: 'Run a multi-line script' +- task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + architecture: 'x64' - bash: | + apt mkdir build cd build cmake ../projects/cmake/ From adf72b0ea03f92f0d71d133ec3cf6a731bd8e76d Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 12:21:33 -0400 Subject: [PATCH 04/47] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5bfe78da..7ee4da05 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,8 +25,10 @@ steps: addToPath: true architecture: 'x64' + - bash: | apt + pip3 install numpy mkdir build cd build cmake ../projects/cmake/ From c55cfd772b7fb8b7146750859bd40c3925ddb93c Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 12:39:11 -0400 Subject: [PATCH 05/47] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7ee4da05..fdd30807 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,8 @@ steps: - bash: | apt - pip3 install numpy + # pip3 install numpy + apt install python-numpy mkdir build cd build cmake ../projects/cmake/ From 3c39a15d648b17c12e24e906c727d35e9f7d9081 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 12:45:15 -0400 Subject: [PATCH 06/47] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fdd30807..c358b53b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,7 +29,7 @@ steps: - bash: | apt # pip3 install numpy - apt install python-numpy + sudo apt install python-numpy mkdir build cd build cmake ../projects/cmake/ From ae11d64907dce08ba7b974c076c0518df6a2b433 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Mon, 23 Sep 2019 14:35:38 -0400 Subject: [PATCH 07/47] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c358b53b..fb236d2a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,7 +5,7 @@ trigger: - master -- hardik/CI_Test +- hardik/arm_examples_2 pool: vmImage: 'ubuntu-latest' From 8d06bf01f22a015de6975f562d3262695154aba0 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 14:59:53 -0400 Subject: [PATCH 08/47] Update azure-pipelines.yml, add CI_Test trigger --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fb236d2a..61df9b97 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,6 +6,7 @@ trigger: - master - hardik/arm_examples_2 +- CI_Test pool: vmImage: 'ubuntu-latest' @@ -28,7 +29,6 @@ steps: - bash: | apt - # pip3 install numpy sudo apt install python-numpy mkdir build cd build From cb404f284a65448d31338e7e6e6d5ce63da20e17 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 15:27:04 -0400 Subject: [PATCH 09/47] Create nothing.cpp --- projects/cmake/nothing.cpp | 1 + 1 file changed, 1 insertion(+) create mode 100644 projects/cmake/nothing.cpp diff --git a/projects/cmake/nothing.cpp b/projects/cmake/nothing.cpp new file mode 100644 index 00000000..4da49de2 --- /dev/null +++ b/projects/cmake/nothing.cpp @@ -0,0 +1 @@ +Hi there, this file means nothing and should do nothing other than casue a recheck for the buidl From bd10fe6b72c4eb320ab8d2cc7298b2e9682751d0 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 15:37:35 -0400 Subject: [PATCH 10/47] Delete nothing.cpp, testing CI --- projects/cmake/nothing.cpp | 1 - 1 file changed, 1 deletion(-) delete mode 100644 projects/cmake/nothing.cpp diff --git a/projects/cmake/nothing.cpp b/projects/cmake/nothing.cpp deleted file mode 100644 index 4da49de2..00000000 --- a/projects/cmake/nothing.cpp +++ /dev/null @@ -1 +0,0 @@ -Hi there, this file means nothing and should do nothing other than casue a recheck for the buidl From 82284c4a085f44aead736ef5665ac3e6925d40d9 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:12:48 -0400 Subject: [PATCH 11/47] Setting up to test multiple versions of linux --- azure-pipelines.yml | 72 +++++++++++++++++++++++++++++---------------- 1 file changed, 46 insertions(+), 26 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 61df9b97..4bab8582 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,29 +9,49 @@ trigger: - CI_Test pool: - vmImage: 'ubuntu-latest' - -steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' - -- script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script' - -- task: UsePythonVersion@0 - inputs: - versionSpec: '3.x' - addToPath: true - architecture: 'x64' - - -- bash: | - apt - sudo apt install python-numpy - mkdir build - cd build - cmake ../projects/cmake/ - make - displayName: 'Testing build on latest ubuntu' \ No newline at end of file + vmImage: 'ubuntu-16.04' + name: Hosted Ubuntu 1604 + +container: + + +# These steps are the only job being run, in every container. + +jobs: +- job: test_linux + + pool: + vmImage: 'ubuntu-latest' + name: Hosted Ubuntu Latest + + strategy: + matrix: + ubuntu14: + containerImage: ubuntu:14.04 + ubuntu16: + containerImage: ubuntu:16.04 + ubuntu18: + containerImage: ubuntu:18.04 + + container: + image: $[variables['containerImage']] + options: --user root + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + architecture: 'x64' + + - bash: | + apt + sudo apt-get install python-numpy + mkdir build + cd build + cmake ../projects/cmake/ + make + displayName: 'Testing build on ubuntu' + + + \ No newline at end of file From eadd357ffe421c099da7045cc1361c65d4550daa Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:15:24 -0400 Subject: [PATCH 12/47] Fix Bug Attempt 1 --- azure-pipelines.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4bab8582..338cbb08 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -53,5 +53,10 @@ jobs: make displayName: 'Testing build on ubuntu' +- job: print_success + + steps: + - script: printenv + \ No newline at end of file From f6c591f49b13d71078281c882518a28127940363 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:16:06 -0400 Subject: [PATCH 13/47] Fix Bug Attempt 1 --- azure-pipelines.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 338cbb08..5bf19ca2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,11 +12,7 @@ pool: vmImage: 'ubuntu-16.04' name: Hosted Ubuntu 1604 -container: - - # These steps are the only job being run, in every container. - jobs: - job: test_linux @@ -54,7 +50,6 @@ jobs: displayName: 'Testing build on ubuntu' - job: print_success - steps: - script: printenv From e486826f734b2054774654a70ba66a911e97bfb8 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:25:01 -0400 Subject: [PATCH 14/47] Fix Bug Attempt 2 --- azure-pipelines.yml | 76 +++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 40 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5bf19ca2..0e284744 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,48 +10,44 @@ trigger: pool: vmImage: 'ubuntu-16.04' - name: Hosted Ubuntu 1604 # These steps are the only job being run, in every container. -jobs: -- job: test_linux - - pool: - vmImage: 'ubuntu-latest' - name: Hosted Ubuntu Latest - - strategy: - matrix: - ubuntu14: - containerImage: ubuntu:14.04 - ubuntu16: - containerImage: ubuntu:16.04 - ubuntu18: - containerImage: ubuntu:18.04 - - container: - image: $[variables['containerImage']] - options: --user root - - steps: - - task: UsePythonVersion@0 - inputs: - versionSpec: '3.x' - addToPath: true - architecture: 'x64' - - - bash: | - apt - sudo apt-get install python-numpy - mkdir build - cd build - cmake ../projects/cmake/ - make - displayName: 'Testing build on ubuntu' - -- job: print_success - steps: - - script: printenv +# jobs: +# - job: test_linux + +pool: +vmImage: 'ubuntu-latest' +name: Hosted Ubuntu Latest + +strategy: +matrix: + ubuntu14: + containerImage: ubuntu:14.04 + ubuntu16: + containerImage: ubuntu:16.04 + ubuntu18: + containerImage: ubuntu:18.04 + +container: +image: $[variables['containerImage']] +options: --user root + +steps: +- task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + architecture: 'x64' + +- bash: | + apt + sudo apt-get install python-numpy + mkdir build + cd build + cmake ../projects/cmake/ + make + displayName: 'Testing build on ubuntu' + \ No newline at end of file From a6403985e9c1469a4ebdb4a462401cc43f183fa3 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:26:22 -0400 Subject: [PATCH 15/47] Fix Bug Attempt 2 --- azure-pipelines.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0e284744..4c07ba80 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,29 +8,28 @@ trigger: - hardik/arm_examples_2 - CI_Test -pool: - vmImage: 'ubuntu-16.04' +# pool: +# vmImage: 'ubuntu-16.04' # These steps are the only job being run, in every container. # jobs: # - job: test_linux pool: -vmImage: 'ubuntu-latest' -name: Hosted Ubuntu Latest + vmImage: '16-04' strategy: -matrix: + matrix: ubuntu14: - containerImage: ubuntu:14.04 + containerImage: ubuntu:14.04 ubuntu16: - containerImage: ubuntu:16.04 + containerImage: ubuntu:16.04 ubuntu18: - containerImage: ubuntu:18.04 + containerImage: ubuntu:18.04 container: -image: $[variables['containerImage']] -options: --user root + image: $[variables['containerImage']] + options: --user root steps: - task: UsePythonVersion@0 From 3a6f16ad63f53da90e5768408d5afeda5e64066d Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:27:58 -0400 Subject: [PATCH 16/47] Fix Bug Attempt 3 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4c07ba80..6161620a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,7 +16,7 @@ trigger: # - job: test_linux pool: - vmImage: '16-04' + vmImage: 'ubuntu-16.04' strategy: matrix: From 31f6808e19ee9d26a2fe5478de4972844cc1fc6d Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:41:02 -0400 Subject: [PATCH 17/47] Fix Bug Attempt 4 --- azure-pipelines.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6161620a..5f3d67d6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -20,12 +20,12 @@ pool: strategy: matrix: - ubuntu14: - containerImage: ubuntu:14.04 - ubuntu16: - containerImage: ubuntu:16.04 - ubuntu18: - containerImage: ubuntu:18.04 + test_ubuntu14: + containerImage: ubuntu-14.04 + test_ubuntu16: + containerImage: ubuntu-16.04 + test_ubuntu18: + containerImage: ubuntu-18.04 container: image: $[variables['containerImage']] From 073f82dc7d0b6247315987e44f8b1d09a3eddb49 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Wed, 25 Sep 2019 18:46:14 -0400 Subject: [PATCH 18/47] Fix Bug Attempt 4 --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5f3d67d6..a89f05f9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,11 +21,11 @@ pool: strategy: matrix: test_ubuntu14: - containerImage: ubuntu-14.04 + containerImage: 'ubuntu-14.04' test_ubuntu16: - containerImage: ubuntu-16.04 + containerImage: 'ubuntu-16.04' test_ubuntu18: - containerImage: ubuntu-18.04 + containerImage: 'ubuntu-18.04' container: image: $[variables['containerImage']] From 6049133bf98c1b6856c753e5dabe6506e73553eb Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 10:44:59 -0400 Subject: [PATCH 19/47] New approach 1 --- azure-pipelines.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a89f05f9..4bf827c7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,17 +18,18 @@ trigger: pool: vmImage: 'ubuntu-16.04' -strategy: - matrix: - test_ubuntu14: - containerImage: 'ubuntu-14.04' - test_ubuntu16: - containerImage: 'ubuntu-16.04' - test_ubuntu18: - containerImage: 'ubuntu-18.04' +# strategy: +# matrix: +# test_ubuntu14: +# containerImage: 'ubuntu-14.04' +# test_ubuntu16: +# containerImage: 'ubuntu-16.04' +# test_ubuntu18: +# containerImage: 'ubuntu-18.04' container: - image: $[variables['containerImage']] + # image: $[variables['containerImage']] + image: ubuntu:18.04 options: --user root steps: From 29451babe3a835b2f7c16d4f322b645f80eccc7e Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 10:49:23 -0400 Subject: [PATCH 20/47] New approach 1.1 --- azure-pipelines.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4bf827c7..ab4c5cb6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,7 +40,6 @@ steps: architecture: 'x64' - bash: | - apt sudo apt-get install python-numpy mkdir build cd build From 4c3a55b53605de571597bb8b3c670498901d43dd Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 11:55:01 -0400 Subject: [PATCH 21/47] New approach 1.2 --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ab4c5cb6..e793f073 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,6 +40,7 @@ steps: architecture: 'x64' - bash: | + apt sudo apt-get install python-numpy mkdir build cd build From dc5cd29ae43179990402eb242751219b98746719 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 11:57:43 -0400 Subject: [PATCH 22/47] New approach 1.3 --- azure-pipelines.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e793f073..44ecabe7 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,15 +18,6 @@ trigger: pool: vmImage: 'ubuntu-16.04' -# strategy: -# matrix: -# test_ubuntu14: -# containerImage: 'ubuntu-14.04' -# test_ubuntu16: -# containerImage: 'ubuntu-16.04' -# test_ubuntu18: -# containerImage: 'ubuntu-18.04' - container: # image: $[variables['containerImage']] image: ubuntu:18.04 @@ -41,7 +32,7 @@ steps: - bash: | apt - sudo apt-get install python-numpy + apt-get install python-numpy mkdir build cd build cmake ../projects/cmake/ From cb5dd08df079fd70cae4a794f605b7f6c5accb02 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 12:01:46 -0400 Subject: [PATCH 23/47] New approach 1.4 --- azure-pipelines.yml | 93 ++++++++++++++++++++++++++++++--------------- 1 file changed, 62 insertions(+), 31 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 44ecabe7..e6a05b61 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,44 +1,75 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml +# # Starter pipeline +# # Start with a minimal pipeline that you can customize to build and deploy your code. +# # Add steps that build, run tests, deploy, and more: +# # https://aka.ms/yaml -trigger: -- master -- hardik/arm_examples_2 -- CI_Test +# trigger: +# - master +# - hardik/arm_examples_2 +# - CI_Test -# pool: +# # pool: +# # vmImage: 'ubuntu-16.04' + +# # These steps are the only job being run, in every container. +# # jobs: +# # - job: test_linux + +# pool: # vmImage: 'ubuntu-16.04' -# These steps are the only job being run, in every container. -# jobs: -# - job: test_linux +# container: +# # image: $[variables['containerImage']] +# image: ubuntu:18.04 +# options: --user root + +# steps: +# - task: UsePythonVersion@0 +# inputs: +# versionSpec: '3.x' +# addToPath: true +# architecture: 'x64' + +# - bash: | +# apt +# apt-get install python-numpy +# mkdir build +# cd build +# cmake ../projects/cmake/ +# make +# displayName: 'Testing build on ubuntu' + + + + +resources: + containers: + - container: u14 + image: ubuntu:14.04 -pool: - vmImage: 'ubuntu-16.04' + - container: u16 + image: ubuntu:16.04 -container: - # image: $[variables['containerImage']] + - container: u18 image: ubuntu:18.04 - options: --user root -steps: -- task: UsePythonVersion@0 - inputs: - versionSpec: '3.x' - addToPath: true - architecture: 'x64' +jobs: +- job: RunInContainer + pool: + vmImage: 'ubuntu-16.04' -- bash: | - apt - apt-get install python-numpy - mkdir build - cd build - cmake ../projects/cmake/ - make - displayName: 'Testing build on ubuntu' + strategy: + matrix: + ubuntu14: + containerResource: u14 + ubuntu16: + containerResource: u16 + ubuntu18: + containerResource: u18 + container: $[ variables['containerResource'] ] + steps: + - script: printenv \ No newline at end of file From 6f8a72e923756d520ca8787bbb696f9cc43b3767 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 13:25:46 -0400 Subject: [PATCH 24/47] New approach 1.5 --- azure-pipelines.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e6a05b61..a7b54e5f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -72,4 +72,18 @@ jobs: steps: - script: printenv - \ No newline at end of file + - bash: | + mkdir build + cd build + printenv + + + + # - bash: | +# apt +# apt-get install python-numpy +# mkdir build +# cd build +# cmake ../projects/cmake/ +# make +# displayName: 'Testing build on ubuntu' \ No newline at end of file From 8ed1bb410ec3efcbcae4ad45bbd976b5f38c0877 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 13:28:52 -0400 Subject: [PATCH 25/47] New approach 1.6 --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a7b54e5f..a5b95164 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -73,9 +73,12 @@ jobs: - script: printenv - bash: | + apt + sudo apt-get install python-numpy mkdir build cd build printenv + displayName: 'Testing build on main ubuntu14/16/18' From dff09bacb266e7045ca662189c0287e5fdb4d5cd Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 13:33:52 -0400 Subject: [PATCH 26/47] New approach 1.7 --- azure-pipelines.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a5b95164..b02983af 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -70,14 +70,12 @@ jobs: container: $[ variables['containerResource'] ] steps: - - script: printenv - - bash: | apt sudo apt-get install python-numpy mkdir build cd build - printenv + echo $PATH displayName: 'Testing build on main ubuntu14/16/18' From 9745440213d88e960e84b39fe96db366be5434e4 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 13:55:53 -0400 Subject: [PATCH 27/47] New approach 2 --- azure-pipelines.yml | 97 +++++++++++++++++++++++++++------------------ 1 file changed, 58 insertions(+), 39 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b02983af..c49b36cf 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -39,52 +39,71 @@ # make # displayName: 'Testing build on ubuntu' +jobs: +- job: test_linux + + pool: + vmImage: 'ubuntu-16.04' + name: Hosted Ubuntu 1604 + container: + image: $(containerImage) + options: --user root + steps: + - checkout: none + - download: current + artifact: cmake + - download: current + artifact: ci -resources: - containers: - - container: u14 - image: ubuntu:14.04 - - - container: u16 - image: ubuntu:16.04 + - bash: | + mkdir build + cd build + cmake ../projects/cmake/ + make + displayName: 'Build Linux x86_64' - - container: u18 - image: ubuntu:18.04 -jobs: -- job: RunInContainer - pool: - vmImage: 'ubuntu-16.04' - strategy: - matrix: - ubuntu14: - containerResource: u14 - ubuntu16: - containerResource: u16 - ubuntu18: - containerResource: u18 - container: $[ variables['containerResource'] ] +### +# Kind of working +### +# resources: +# containers: +# - container: u14 +# image: ubuntu:14.04 - steps: - - bash: | - apt - sudo apt-get install python-numpy - mkdir build - cd build - echo $PATH - displayName: 'Testing build on main ubuntu14/16/18' +# - container: u16 +# image: ubuntu:16.04 - +# - container: u18 +# image: ubuntu:18.04 - # - bash: | -# apt -# apt-get install python-numpy -# mkdir build -# cd build -# cmake ../projects/cmake/ -# make -# displayName: 'Testing build on ubuntu' \ No newline at end of file +# jobs: +# - job: RunInContainer +# pool: +# vmImage: 'ubuntu-16.04' + +# strategy: +# matrix: +# ubuntu14: +# containerResource: u14 +# ubuntu16: +# containerResource: u16 +# ubuntu18: +# containerResource: u18 + +# container: $[ variables['containerResource'] ] + +# steps: +# - bash: | +# apt +# sudo apt-get install python-numpy +# mkdir build +# cd build +# echo $PATH +# displayName: 'Testing build on main ubuntu14/16/18' + + \ No newline at end of file From 19afd12cc9cb6c97faebc80109c54c861af07ef1 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:11:57 -0400 Subject: [PATCH 28/47] New approach 2.1 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c49b36cf..5e760aff 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,7 +46,7 @@ jobs: vmImage: 'ubuntu-16.04' name: Hosted Ubuntu 1604 container: - image: $(containerImage) + image: $(vmImage) options: --user root steps: From f2bcdba829b1360d3dcb00c81ad7eeab5e5ad8c5 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:13:12 -0400 Subject: [PATCH 29/47] New approach 2.2 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5e760aff..5ebdefd2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -46,7 +46,7 @@ jobs: vmImage: 'ubuntu-16.04' name: Hosted Ubuntu 1604 container: - image: $(vmImage) + image: ubuntu-18.04 options: --user root steps: From b2f1bfdbfea719113bde023d82d92a9a394f0f6f Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:16:47 -0400 Subject: [PATCH 30/47] New approach 2.3 --- azure-pipelines.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5ebdefd2..bf7aa181 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -39,6 +39,11 @@ # make # displayName: 'Testing build on ubuntu' +variables: + ubuntu14: 'ubuntu:14.04' + ubuntu16: 'ubuntu:16.04' + ubuntu18: 'ubuntu:18.04' + jobs: - job: test_linux @@ -46,7 +51,7 @@ jobs: vmImage: 'ubuntu-16.04' name: Hosted Ubuntu 1604 container: - image: ubuntu-18.04 + image: ubuntu18 options: --user root steps: From 551ff5ff9829dd8f90d472d29c674a06cb904269 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:20:33 -0400 Subject: [PATCH 31/47] New approach 2.3 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bf7aa181..d720e3e5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -51,7 +51,7 @@ jobs: vmImage: 'ubuntu-16.04' name: Hosted Ubuntu 1604 container: - image: ubuntu18 + image: $(ubuntu18) options: --user root steps: From 41d48afa5bd8325a17823e4e8561e02f56b749c0 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:23:04 -0400 Subject: [PATCH 32/47] New approach 2.3 --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d720e3e5..64796290 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -57,10 +57,10 @@ jobs: steps: - checkout: none - - download: current - artifact: cmake - - download: current - artifact: ci +# - download: current +# artifact: cmake +# - download: current +# artifact: ci - bash: | mkdir build From a6b519f4038565e9ae078f1dc5ed27df9a08538e Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:28:00 -0400 Subject: [PATCH 33/47] New approach 2.4 --- azure-pipelines.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 64796290..a9e55d5b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -55,10 +55,11 @@ jobs: options: --user root steps: - - checkout: none +# - checkout: none # - download: current # artifact: cmake + # - download: current # artifact: ci @@ -69,7 +70,9 @@ jobs: make displayName: 'Build Linux x86_64' - + - task: CMake@1 + inputs: + cmakeArgs: '../projects/cmake/' ### From 49c648d556c870005d4b1fb239e3d58666149efd Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Thu, 26 Sep 2019 14:29:55 -0400 Subject: [PATCH 34/47] New approach 2.4 --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a9e55d5b..808e350c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -65,9 +65,9 @@ jobs: - bash: | mkdir build - cd build - cmake ../projects/cmake/ - make + # cd build + # cmake ../projects/cmake/ + # make displayName: 'Build Linux x86_64' - task: CMake@1 From f9a1e7e69d13f6285fc405100ed99da0cbf50e64 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 14:38:02 -0400 Subject: [PATCH 35/47] New Approach 2.5 --- azure-pipelines.yml | 49 +++++++-------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 808e350c..50ad9911 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,41 +3,10 @@ # # Add steps that build, run tests, deploy, and more: # # https://aka.ms/yaml -# trigger: -# - master -# - hardik/arm_examples_2 -# - CI_Test - -# # pool: -# # vmImage: 'ubuntu-16.04' - -# # These steps are the only job being run, in every container. -# # jobs: -# # - job: test_linux - -# pool: -# vmImage: 'ubuntu-16.04' - -# container: -# # image: $[variables['containerImage']] -# image: ubuntu:18.04 -# options: --user root - -# steps: -# - task: UsePythonVersion@0 -# inputs: -# versionSpec: '3.x' -# addToPath: true -# architecture: 'x64' - -# - bash: | -# apt -# apt-get install python-numpy -# mkdir build -# cd build -# cmake ../projects/cmake/ -# make -# displayName: 'Testing build on ubuntu' +trigger: +- master +- hardik/arm_examples_2 +- CI_Test variables: ubuntu14: 'ubuntu:14.04' @@ -65,16 +34,12 @@ jobs: - bash: | mkdir build - # cd build - # cmake ../projects/cmake/ + cd build + echo $PATH + cmake ../projects/cmake/ # make displayName: 'Build Linux x86_64' - - task: CMake@1 - inputs: - cmakeArgs: '../projects/cmake/' - - ### # Kind of working ### From 34a6423c1eb586c94a3b721c253080802c25bf19 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 14:45:41 -0400 Subject: [PATCH 36/47] New Approach 2.5 --- azure-pipelines.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 50ad9911..cea1b5b6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,10 +36,17 @@ jobs: mkdir build cd build echo $PATH - cmake ../projects/cmake/ + # cmake ../projects/cmake/ # make displayName: 'Build Linux x86_64' + - task: CMake@1 + inputs: + workingDirectory: 'build' + cmakeArgs: ../projects/cmake/ + + + ### # Kind of working ### From d3b32c2f073825e870a0b2e0138590381a12a8ba Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 15:38:16 -0400 Subject: [PATCH 37/47] New Approach 3.0 --- azure-pipelines.yml | 95 +++++++++++---------------------------------- 1 file changed, 23 insertions(+), 72 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cea1b5b6..69158a2d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,82 +8,33 @@ trigger: - hardik/arm_examples_2 - CI_Test -variables: - ubuntu14: 'ubuntu:14.04' - ubuntu16: 'ubuntu:16.04' - ubuntu18: 'ubuntu:18.04' +# variables: +# ubuntu14: 'ubuntu:14.04' +# ubuntu16: 'ubuntu:16.04' +# ubuntu18: 'ubuntu:18.04' -jobs: -- job: test_linux - - pool: - vmImage: 'ubuntu-16.04' - name: Hosted Ubuntu 1604 - container: - image: $(ubuntu18) - options: --user root - - steps: -# - checkout: none - -# - download: current -# artifact: cmake - -# - download: current -# artifact: ci - - - bash: | - mkdir build - cd build - echo $PATH - # cmake ../projects/cmake/ - # make - displayName: 'Build Linux x86_64' - - - task: CMake@1 - inputs: - workingDirectory: 'build' - cmakeArgs: ../projects/cmake/ - - - -### -# Kind of working -### -# resources: -# containers: -# - container: u14 -# image: ubuntu:14.04 - -# - container: u16 -# image: ubuntu:16.04 - -# - container: u18 -# image: ubuntu:18.04 +pool: + vmImage: 'Ubuntu-16.04' # jobs: -# - job: RunInContainer -# pool: -# vmImage: 'ubuntu-16.04' +# - job: test_linux + + # pool: + # vmImage: 'ubuntu-16.04' + # name: Hosted Ubuntu 1604 + # container: + # image: $(ubuntu18) + # options: --user root -# strategy: -# matrix: -# ubuntu14: -# containerResource: u14 -# ubuntu16: -# containerResource: u16 -# ubuntu18: -# containerResource: u18 +steps: +- bash: | + mkdir build + cd build + echo $PATH + # cmake ../projects/cmake/ + # make + displayName: 'Build Linux x86_64' -# container: $[ variables['containerResource'] ] -# steps: -# - bash: | -# apt -# sudo apt-get install python-numpy -# mkdir build -# cd build -# echo $PATH -# displayName: 'Testing build on main ubuntu14/16/18' - \ No newline at end of file + \ No newline at end of file From 5f8f879018f30c0b97b64411dbb4022423844de8 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 15:39:24 -0400 Subject: [PATCH 38/47] New Approach 3.0 --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 69158a2d..397c9039 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,8 +31,8 @@ steps: mkdir build cd build echo $PATH - # cmake ../projects/cmake/ - # make + cmake ../projects/cmake/ + make displayName: 'Build Linux x86_64' From e63772f60a5a2b6dbcf34a72d9d30a08f65c4482 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 15:42:38 -0400 Subject: [PATCH 39/47] New Approach 3.1 --- azure-pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 397c9039..fbe3443f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,7 +27,15 @@ pool: # options: --user root steps: + +- task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + architecture: 'x64' + - bash: | + sudo apt install python-numpy mkdir build cd build echo $PATH From bbc4f12805596f6e451ac2d34c1b3fa7578dedf9 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 15:53:58 -0400 Subject: [PATCH 40/47] New Approach 3.2 --- azure-pipelines.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fbe3443f..9ae52f51 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,23 +8,23 @@ trigger: - hardik/arm_examples_2 - CI_Test -# variables: -# ubuntu14: 'ubuntu:14.04' -# ubuntu16: 'ubuntu:16.04' -# ubuntu18: 'ubuntu:18.04' +variables: + # ubuntu14: 'ubuntu:14.04' + # ubuntu16: 'ubuntu-16.04' + # ubuntu18: 'ubuntu:18.04' + # macOS: "macos-10.13" + +strategy: + matrix: + ubuntu16: + imageName: 'ubuntu-16.04' + mac: + imageName: "macos-10.13" + pool: - vmImage: 'Ubuntu-16.04' - -# jobs: -# - job: test_linux - - # pool: - # vmImage: 'ubuntu-16.04' - # name: Hosted Ubuntu 1604 - # container: - # image: $(ubuntu18) - # options: --user root + vmImage: $(imageName) + #'Ubuntu-16.04' steps: From f7a56db6020202a8e055eed0245d154c725b20ee Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 15:54:50 -0400 Subject: [PATCH 41/47] New Approach 3.2 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9ae52f51..3ee88966 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,7 +8,7 @@ trigger: - hardik/arm_examples_2 - CI_Test -variables: +# variables: # ubuntu14: 'ubuntu:14.04' # ubuntu16: 'ubuntu-16.04' # ubuntu18: 'ubuntu:18.04' From 3c7aea2f6a6c3dc84a95ade17cab010abff937c0 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 15:58:10 -0400 Subject: [PATCH 42/47] New Approach 3.3 --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3ee88966..c38ffb34 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -36,6 +36,7 @@ steps: - bash: | sudo apt install python-numpy + pip install numpy mkdir build cd build echo $PATH From d5f23a898982603f61260114cc5a14237e0a15d8 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 16:07:16 -0400 Subject: [PATCH 43/47] New Approach 3.4 --- azure-pipelines.yml | 78 ++++++++++++++++++++++++++++----------------- 1 file changed, 49 insertions(+), 29 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c38ffb34..b2e5d31f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,36 +14,56 @@ trigger: # ubuntu18: 'ubuntu:18.04' # macOS: "macos-10.13" -strategy: - matrix: - ubuntu16: - imageName: 'ubuntu-16.04' - mac: - imageName: "macos-10.13" - - -pool: - vmImage: $(imageName) - #'Ubuntu-16.04' - -steps: - -- task: UsePythonVersion@0 - inputs: - versionSpec: '3.x' - addToPath: true - architecture: 'x64' - -- bash: | - sudo apt install python-numpy - pip install numpy - mkdir build - cd build - echo $PATH - cmake ../projects/cmake/ - make - displayName: 'Build Linux x86_64' +# strategy: +# matrix: +# ubuntu16: +# imageName: 'ubuntu-16.04' +# mac: +# imageName: "macos-10.13" +jobs: +- job: test_ubuntu16 + + pool: + vmImage: 'Ubuntu-16.04' + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + architecture: 'x64' + + - bash: | + sudo apt install python-numpy + pip install numpy + mkdir build + cd build + echo $PATH + cmake ../projects/cmake/ + make + # displayName: 'Build Linux x86_64' + +- job: test_macos + + pool: + vmImage: 'macos-10.13' + + steps: + - task: UsePythonVersion@0 + inputs: + versionSpec: '3.x' + addToPath: true + architecture: 'x64' + + - bash: | + pip3 install numpy + mkdir build + cd build + echo $PATH + cmake ../projects/cmake/ + make + # displayName: 'Build Linux x86_64' \ No newline at end of file From 2e5f58b5d4bcf347e0cf674c0d1b3339ec793da2 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 16:20:36 -0400 Subject: [PATCH 44/47] New Approach 3.5 --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b2e5d31f..2cf0479f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -58,6 +58,7 @@ jobs: - bash: | pip3 install numpy + export CFLAGS="-I /usr/local/lib/python3.7/site-packages/numpy/core/include $CFLAGS" mkdir build cd build echo $PATH From b8b4262965a890f674851e6ac291cc20bf6ec7aa Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 16:34:23 -0400 Subject: [PATCH 45/47] New Approach 3.6 --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2cf0479f..85173538 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -59,6 +59,7 @@ jobs: - bash: | pip3 install numpy export CFLAGS="-I /usr/local/lib/python3.7/site-packages/numpy/core/include $CFLAGS" + export CFLAGS="-I /usr/local/lib/python2.7/site-packages/numpy/core/include $CFLAGS" mkdir build cd build echo $PATH From 191affc84dd7a3c6a5909860bc4ee76d5d142e30 Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 16:44:30 -0400 Subject: [PATCH 46/47] New Approach 3.7 --- azure-pipelines.yml | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 85173538..c411f943 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,19 +8,6 @@ trigger: - hardik/arm_examples_2 - CI_Test -# variables: - # ubuntu14: 'ubuntu:14.04' - # ubuntu16: 'ubuntu-16.04' - # ubuntu18: 'ubuntu:18.04' - # macOS: "macos-10.13" - -# strategy: -# matrix: -# ubuntu16: -# imageName: 'ubuntu-16.04' -# mac: -# imageName: "macos-10.13" - jobs: - job: test_ubuntu16 @@ -63,8 +50,12 @@ jobs: mkdir build cd build echo $PATH - cmake ../projects/cmake/ - make + + # something still going wrong so this is commented out for now + # TODO: Fix this + + # cmake ../projects/cmake/ + # make # displayName: 'Build Linux x86_64' From 099bf7cca4a300712ff18676bba0077ffe3812af Mon Sep 17 00:00:00 2001 From: HardikSingh97 Date: Fri, 27 Sep 2019 16:47:41 -0400 Subject: [PATCH 47/47] New Approach 3 Working --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c411f943..80aee72e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -31,7 +31,7 @@ jobs: make # displayName: 'Build Linux x86_64' -- job: test_macos +- job: test_macos_currently_broken pool: vmImage: 'macos-10.13'