Skip to content
Snippets Groups Projects
Commit e75a9636 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[data/gitlab-ci/osx-arm64-support] Extends the standard single-package.yaml to...

[data/gitlab-ci/osx-arm64-support] Extends the standard single-package.yaml to support osx-arm64 builds
parent 6e33704a
No related branches found
No related tags found
1 merge request!263Implements builds for Apple Silicon
.build_macos_arm_template:
extends: .build_template
tags:
- macos
- arm
artifacts:
paths:
- ${CONDA_ROOT}/conda-bld/osx-arm64/*.conda
- ${CONDA_ROOT}/conda-bld/osx-arm64/*.tar.bz2
build_macos_arm_38:
extends: .build_macos_arm_template
variables:
PYTHON_VERSION: "3.8"
cache:
key: "build-py38"
.deploy_template:
dependencies:
- build_linux_38
- build_macos_intel_38
- build_macos_arm_38
deploy_beta:
extends: .deploy_template
environment: beta
only:
- master
deploy_stable:
extends: .deploy_template
environment: stable
only:
- /^v\d+\.\d+\.\d+([abc]\d*)?$/ # PEP-440 compliant version (tags)
except:
- branches
pypi:
dependencies:
- build_linux_38
- build_macos_intel_38
- build_macos_arm_38
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment