加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
azure-pipeline.yml 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
pr:
autoCancel: true
jobs:
- job: 'Linux'
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Python37:
python.version: '3.7'
maxParallel: 1
steps:
- bash: echo "##vso[task.prependpath]/usr/share/miniconda/bin"
displayName: Add conda to PATH
- bash: conda create -n foo -q --yes -c conda-forge -c bioconda htslib python gcc_impl_linux-64 binutils_impl_linux-64 binutils_linux-64 gcc_linux-64 libgcc-ng libbigwig
displayName: Installing dependencies
- template: .azure-pipelines/test-template.yml
#This tries to link against 32-bit libraries for some reason
#- job: 'OSX'
# pool:
# vmImage: 'macOS-10.13'
# strategy:
# matrix:
# Python37:
# python.version: '3.7'
# maxParallel: 1
#
# steps:
# - script: |
# echo "Removing homebrew from Azure to avoid conflicts."
# curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew
# chmod +x ~/uninstall_homebrew
# ~/uninstall_homebrew -fq
# rm ~/uninstall_homebrew
# displayName: Remove homebrew
# - bash: echo "##vso[task.prependpath]$CONDA/bin"
# displayName: Add conda to PATH
# - bash: conda create -n foo -q --yes -c conda-forge -c bioconda htslib python clang clang_osx-64 clangxx cctools compiler-rt ld64
# displayName: Installing dependencies
# - template: .azure-pipelines/test-template.yml
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化