123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # 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:
- - id: deploy_mz-debug-linux-x86_64
- label: "Deploy mz-debug for Linux x86-64"
- command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz-debug.linux
- timeout_in_minutes: 30
- agents:
- queue: linux-x86_64-small
- concurrency: 1
- concurrency_group: deploy-mz-debug/linux/x86_64
- - id: deploy_mz-debug-linux-aarch64
- label: "Deploy mz-debug for Linux aarch64"
- command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz-debug.linux
- timeout_in_minutes: 30
- agents:
- queue: linux-aarch64-small
- concurrency: 1
- concurrency_group: deploy-mz-debug/linux/aarch64
- - id: deploy_mz-debug-macos-x86_64
- label: "Deploy mz-debug for macOS x86-64"
- command: bin/pyactivate -m ci.deploy_mz-debug.macos
- agents:
- queue: mac-x86_64
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy-mz-debug/macos/x86_64
- - id: deploy_mz-debug-macos-aarch64
- label: "Deploy mz-debug for macOS aarch64"
- command: bin/pyactivate -m ci.deploy_mz-debug.macos
- agents:
- queue: mac-aarch64
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy-mz-debug/macos/aarch64
|