pipeline.template.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. # Deploys are fast, do them quickly
  10. priority: 30
  11. steps:
  12. - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.version
  13. timeout_in_minutes: 30
  14. concurrency: 1
  15. concurrency_group: deploy-mz/version
  16. - id: linux-x86_64
  17. command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.linux
  18. timeout_in_minutes: 30
  19. agents:
  20. queue: linux-x86_64-small
  21. concurrency: 1
  22. concurrency_group: deploy-mz/linux/x86_64
  23. - id: linux-aarch64
  24. command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.linux
  25. timeout_in_minutes: 30
  26. agents:
  27. queue: linux-aarch64-small
  28. concurrency: 1
  29. concurrency_group: deploy-mz/linux/aarch64
  30. - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy_mz.docker
  31. timeout_in_minutes: 30
  32. depends_on:
  33. - linux-x86_64
  34. - linux-aarch64
  35. agents:
  36. queue: linux-x86_64-small
  37. concurrency: 1
  38. concurrency_group: deploy-mz/docker
  39. - command: bin/pyactivate -m ci.deploy_mz.macos
  40. agents:
  41. queue: mac-x86_64
  42. timeout_in_minutes: 30
  43. concurrency: 1
  44. concurrency_group: deploy-mz/macos/x86_64
  45. - command: bin/pyactivate -m ci.deploy_mz.macos
  46. agents:
  47. queue: mac-aarch64
  48. timeout_in_minutes: 30
  49. concurrency: 1
  50. concurrency_group: deploy-mz/macos/aarch64