Skip to content
Open
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
6ada940
Set up CI with Azure Pipelines
HardikSingh97 Sep 23, 2019
9e39abe
Update azure-pipelines.yml for Azure Pipelines
HardikSingh97 Sep 23, 2019
911e289
Update azure-pipelines.yml for Azure Pipelines
HardikSingh97 Sep 23, 2019
adf72b0
Update azure-pipelines.yml for Azure Pipelines
HardikSingh97 Sep 23, 2019
c55cfd7
Update azure-pipelines.yml for Azure Pipelines
HardikSingh97 Sep 23, 2019
3c39a15
Update azure-pipelines.yml for Azure Pipelines
HardikSingh97 Sep 23, 2019
ae11d64
Update azure-pipelines.yml for Azure Pipelines
HardikSingh97 Sep 23, 2019
8d06bf0
Update azure-pipelines.yml, add CI_Test trigger
HardikSingh97 Sep 25, 2019
cb404f2
Create nothing.cpp
HardikSingh97 Sep 25, 2019
bd10fe6
Delete nothing.cpp, testing CI
HardikSingh97 Sep 25, 2019
82284c4
Setting up to test multiple versions of linux
HardikSingh97 Sep 25, 2019
eadd357
Fix Bug Attempt 1
HardikSingh97 Sep 25, 2019
f6c591f
Fix Bug Attempt 1
HardikSingh97 Sep 25, 2019
e486826
Fix Bug Attempt 2
HardikSingh97 Sep 25, 2019
a640398
Fix Bug Attempt 2
HardikSingh97 Sep 25, 2019
3a6f16a
Fix Bug Attempt 3
HardikSingh97 Sep 25, 2019
31f6808
Fix Bug Attempt 4
HardikSingh97 Sep 25, 2019
073f82d
Fix Bug Attempt 4
HardikSingh97 Sep 25, 2019
6049133
New approach 1
HardikSingh97 Sep 26, 2019
29451ba
New approach 1.1
HardikSingh97 Sep 26, 2019
4c3a55b
New approach 1.2
HardikSingh97 Sep 26, 2019
dc5cd29
New approach 1.3
HardikSingh97 Sep 26, 2019
cb5dd08
New approach 1.4
HardikSingh97 Sep 26, 2019
6f8a72e
New approach 1.5
HardikSingh97 Sep 26, 2019
8ed1bb4
New approach 1.6
HardikSingh97 Sep 26, 2019
dff09ba
New approach 1.7
HardikSingh97 Sep 26, 2019
9745440
New approach 2
HardikSingh97 Sep 26, 2019
19afd12
New approach 2.1
HardikSingh97 Sep 26, 2019
f2bcdba
New approach 2.2
HardikSingh97 Sep 26, 2019
b2f1bfd
New approach 2.3
HardikSingh97 Sep 26, 2019
551ff5f
New approach 2.3
HardikSingh97 Sep 26, 2019
41d48af
New approach 2.3
HardikSingh97 Sep 26, 2019
a6b519f
New approach 2.4
HardikSingh97 Sep 26, 2019
49c648d
New approach 2.4
HardikSingh97 Sep 26, 2019
f9a1e7e
New Approach 2.5
HardikSingh97 Sep 27, 2019
34a6423
New Approach 2.5
HardikSingh97 Sep 27, 2019
d3b32c2
New Approach 3.0
HardikSingh97 Sep 27, 2019
5f8f879
New Approach 3.0
HardikSingh97 Sep 27, 2019
e63772f
New Approach 3.1
HardikSingh97 Sep 27, 2019
bbc4f12
New Approach 3.2
HardikSingh97 Sep 27, 2019
f7a56db
New Approach 3.2
HardikSingh97 Sep 27, 2019
3c7aea2
New Approach 3.3
HardikSingh97 Sep 27, 2019
d5f23a8
New Approach 3.4
HardikSingh97 Sep 27, 2019
2e5f58b
New Approach 3.5
HardikSingh97 Sep 27, 2019
b8b4262
New Approach 3.6
HardikSingh97 Sep 27, 2019
191affc
New Approach 3.7
HardikSingh97 Sep 27, 2019
099bf7c
New Approach 3 Working
HardikSingh97 Sep 27, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# # 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

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_currently_broken

pool:
vmImage: 'macos-10.13'

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.x'
addToPath: true
architecture: 'x64'

- 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

# something still going wrong so this is commented out for now
# TODO: Fix this

# cmake ../projects/cmake/
# make
# displayName: 'Build Linux x86_64'