123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- # Copyright Materialize, Inc. and contributors. All rights reserved.
- #
- # Use of this software is governed by the Business Source License
- # included in the LICENSE file at the root of this repository.
- #
- # As of the Change Date specified in that file, in accordance with
- # the Business Source License, use of this software will be governed
- # by the Apache License, Version 2.0.
- # Deploys are fast, do them quickly
- priority: 30
- steps:
- - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.version
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy-mz/version
- - id: linux-x86_64
- command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.linux
- timeout_in_minutes: 30
- agents:
- queue: linux-x86_64-small
- concurrency: 1
- concurrency_group: deploy-mz/linux/x86_64
- - id: linux-aarch64
- command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.linux
- timeout_in_minutes: 30
- agents:
- queue: linux-aarch64-small
- concurrency: 1
- concurrency_group: deploy-mz/linux/aarch64
- - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.docker
- timeout_in_minutes: 30
- depends_on:
- - linux-x86_64
- - linux-aarch64
- agents:
- queue: linux-x86_64-small
- concurrency: 1
- concurrency_group: deploy-mz/docker
- - command: bin/pyactivate -m ci.deploy_mz.macos
- agents:
- queue: mac-x86_64
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy-mz/macos/x86_64
- - command: bin/pyactivate -m ci.deploy_mz.macos
- agents:
- queue: mac-aarch64
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy-mz/macos/aarch64
|