代码拉取完成,页面将自动刷新
parameters:
name: 'Conda build job'
vmImage: 'Ubuntu-18.04'
py_maj: '3'
py_min: '6'
conda_bld: '3.16.3'
jobs:
- job: ${{ parameters.name }}
timeoutInMinutes: 360
pool:
vmImage: ${{ parameters.vmImage }}
steps:
#activate conda
- ${{ if or(contains(parameters.vmImage, 'macOS'),contains(parameters.vmImage, 'Ubuntu')) }}:
- bash: echo "##vso[task.prependpath]$CONDA/bin"
displayName: 'Add conda to PATH'
- ${{ if contains(parameters.vmImage, 'win') }}:
- powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
displayName: 'Add conda to PATH'
# Ubuntu install opengl items
- ${{ if contains(parameters.vmImage, 'Ubuntu') }}:
- bash: |
sudo apt-get update && \
sudo apt-get -q -y install libglu1-mesa-dev libgl1-mesa-dev libxmu-dev libxi-dev
displayName: 'Install OpenGL headers'
# macOS ownership workaround and fix osx sdk
- ${{ if contains(parameters.vmImage, 'macOS') }}:
- bash: |
sudo chown -R $USER $CONDA && \
curl -o MacOSX10.9.sdk.tar.xz -L https://github.com/phracker/MacOSX-SDKs/releases/download/10.13/MacOSX10.9.sdk.tar.xz && \
tar xf MacOSX10.9.sdk.tar.xz && \
sudo mkdir -p /Applications/Xcode_12.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs && \
sudo mv -v MacOSX10.9.sdk /Applications/Xcode_12.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ && \
ls /Applications/Xcode_12.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/
displayName: 'MacOS ownership workaround and installation of MacOSX10.9 sdk'
- bash: |
conda config --set always_yes yes --set changeps1 no && \
conda update -q conda && \
conda info -a && \
conda config --add channels https://conda.anaconda.org/conda-forge
displayName: 'Conda config and info'
# on windows, set arch if ever 32 is in the build name
- ${{ if contains(parameters.name, '32') }}:
- bash: |
set CONDA_SUBDIR=win-32 && \
conda config --env --set subdir win-32
displayName: 'Windows force 32 bit build'
- bash: conda create --yes --quiet --name build_env conda-build=${{ parameters.conda_bld }} conda-verify libarchive python=${{ parameters.py_maj }}.${{ parameters.py_min }} anaconda-client
displayName: Create Anaconda environment
- bash: |
source activate build_env && \
conda build --no-remove-work-dir --dirty ci/conda
displayName: 'Run conda build'
failOnStderr: false
env:
PYTHONBUFFERED: 1
PYTHON_VERSION: ${{ parameters.py_maj }}.${{ parameters.py_min }}
PACKAGE_VERSION: $(Build.SourceBranchName)
TOKEN: $(anaconda.TOKEN)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。