mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-09 22:00:06 +00:00
Merge pull request #1190 from davidgyu/dev_azure_pipelines
Updated Azure Pipelines script
This commit is contained in:
commit
87874af2e9
@ -5,15 +5,23 @@ trigger:
|
|||||||
jobs:
|
jobs:
|
||||||
- job: Linux
|
- job: Linux
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'Ubuntu-16.04'
|
vmImage: 'ubuntu-18.04'
|
||||||
steps:
|
steps:
|
||||||
- script: |
|
- script: |
|
||||||
sudo apt-get -qq update;
|
sudo apt-get -qq update;
|
||||||
sudo pip install --upgrade pip
|
sudo pip install --upgrade pip
|
||||||
sudo apt-get install python-setuptools;
|
sudo apt-get install python-setuptools;
|
||||||
sudo apt-get install libglew-dev libxrandr-dev libxcursor-dev libxinerama-dev libxi-dev;
|
sudo apt-get install libglew-dev libxrandr-dev libxcursor-dev libxinerama-dev libxi-dev;
|
||||||
sudo python build_scripts/build_osd.py --tbb --omp --build $HOME/OSDgen/build --src $HOME/OSDgen/src $HOME/OSDinst
|
sudo python build_scripts/build_osd.py --tests --tbb --omp --build $HOME/OSDgen/build --src $HOME/OSDgen/src $HOME/OSDinst
|
||||||
displayName: 'Building OpenSubdiv'
|
displayName: 'Building OpenSubdiv'
|
||||||
|
- script: |
|
||||||
|
cd $HOME/OSDgen/build/s
|
||||||
|
sudo ctest -T test -R far
|
||||||
|
displayName: 'Testing OpenSubdiv'
|
||||||
|
- task: PublishTestResults@2
|
||||||
|
inputs:
|
||||||
|
testResultsFormat: cTest
|
||||||
|
testResultsFiles: /home/vsts/OSDgen/build/s/Testing/*/Test.xml
|
||||||
- task: PublishPipelineArtifact@0
|
- task: PublishPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'osd-linux'
|
artifactName: 'osd-linux'
|
||||||
@ -22,28 +30,42 @@ jobs:
|
|||||||
|
|
||||||
- job: macOS
|
- job: macOS
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'macOS-10.13'
|
vmImage: 'macOS-10.14'
|
||||||
steps:
|
steps:
|
||||||
- script: |
|
- script: |
|
||||||
# The SYSTEM env var is used by the Makefile of glew and having it set trips it up
|
|
||||||
unset SYSTEM
|
|
||||||
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_10.1.app/Contents/Developer"
|
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_10.1.app/Contents/Developer"
|
||||||
python build_scripts/build_osd.py --tbb --generator Xcode --build $HOME/OSDgen/build --src $HOME/OSDgen/src $HOME/OSDinst
|
python build_scripts/build_osd.py --tests --tbb --generator Xcode --build $HOME/OSDgen/build --src $HOME/OSDgen/src $HOME/OSDinst
|
||||||
displayName: 'Building OpenSubdiv'
|
displayName: 'Building OpenSubdiv'
|
||||||
|
- script: |
|
||||||
|
cd $HOME/OSDgen/build/s
|
||||||
|
ctest -T test -R far
|
||||||
|
displayName: 'Testing OpenSubdiv'
|
||||||
|
- task: PublishTestResults@2
|
||||||
|
inputs:
|
||||||
|
testResultsFormat: cTest
|
||||||
|
testResultsFiles: /Users/runner/OSDgen/build/s/Testing/*/Test.xml
|
||||||
- task: PublishPipelineArtifact@0
|
- task: PublishPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'osd-macOS'
|
artifactName: 'osd-macOS'
|
||||||
targetPath: " /Users/runner/OSDinst"
|
targetPath: "/Users/runner/OSDinst"
|
||||||
|
|
||||||
- job: Windows
|
- job: Windows
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'VS2017-Win2016'
|
vmImage: 'windows-2019'
|
||||||
steps:
|
steps:
|
||||||
- script: |
|
- script: |
|
||||||
call C:\"Program Files (x86)"\"Microsoft Visual Studio"\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat
|
call C:\"Program Files (x86)"\"Microsoft Visual Studio"\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
|
||||||
call set PATH=C:/Python27amd64;C:/Python27amd64/Scripts;%PATH%
|
call set PATH=C:/Python27amd64;C:/Python27amd64/Scripts;%PATH%
|
||||||
call python build_scripts/build_osd.py --tbb --omp --build %HOME%/OSDgen/build --src %HOME%/OSDgen/src %HOME%/OSDinst
|
call python build_scripts/build_osd.py --tests --tbb --omp --build %HOME%/OSDgen/build --src %HOME%/OSDgen/src %HOME%/OSDinst
|
||||||
displayName: 'Building OpenSubdiv'
|
displayName: 'Building OpenSubdiv'
|
||||||
|
- script: |
|
||||||
|
cd %HOME%/OSDgen/build/s
|
||||||
|
ctest -T test -R far
|
||||||
|
displayName: 'Testing OpenSubdiv'
|
||||||
|
- task: PublishTestResults@2
|
||||||
|
inputs:
|
||||||
|
testResultsFormat: cTest
|
||||||
|
testResultsFiles: D:/OSDgen/build/s/Testing/*/Test.xml
|
||||||
- task: PublishPipelineArtifact@0
|
- task: PublishPipelineArtifact@0
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'osd-win64'
|
artifactName: 'osd-win64'
|
||||||
|
Loading…
Reference in New Issue
Block a user