Skip to content

Commit

Permalink
Added pipeline file
Browse files Browse the repository at this point in the history
  • Loading branch information
stuwilkins committed Jun 30, 2019
1 parent 5f540ec commit 2d4e969
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
jobs:
- job: 'BuildLib'
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.6'
architecture: 'x64'
- script: |
sudo apt-get install cmake
python -m pip install cpplint
displayName: Install Deps
- script: |
cmake --version
mkdir lmfit_build
cd lmfit_build
cmake -DBUILD_SHARED_LIBS=ON \
-DCMAKE_POSITION_INDEPENDENT_CODE=YES \
-DCMAKE_INSTALL_PREFIX=/usr \
..
make
displayName: Build and Install lmfit

0 comments on commit 2d4e969

Please sign in to comment.