pipeline.template.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. env:
  12. CI_BAZEL_BUILD: 1
  13. CI_BAZEL_REMOTE_CACHE: $BAZEL_REMOTE_CACHE
  14. steps:
  15. - command: bin/ci-builder run nightly ci/deploy/devsite.sh
  16. branches: main
  17. timeout_in_minutes: 60
  18. agents:
  19. queue: linux-x86_64
  20. concurrency: 1
  21. concurrency_group: deploy/devsite
  22. - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy.docker
  23. timeout_in_minutes: 30
  24. agents:
  25. queue: linux-x86_64-small
  26. concurrency: 1
  27. concurrency_group: deploy/linux
  28. - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy.pypi
  29. timeout_in_minutes: 30
  30. concurrency: 1
  31. concurrency_group: deploy/pypi
  32. agents:
  33. queue: linux-x86_64-small
  34. - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy.npm
  35. timeout_in_minutes: 30
  36. concurrency: 1
  37. concurrency_group: deploy/npm
  38. agents:
  39. queue: linux-x86_64-small
  40. - label: ":bulb: Full SQL Logic Tests"
  41. trigger: slt
  42. async: true
  43. branches: "v*.*rc*"
  44. build:
  45. commit: "$BUILDKITE_COMMIT"
  46. branch: "$BUILDKITE_BRANCH"
  47. env:
  48. BUILDKITE_TAG: "$BUILDKITE_TAG"
  49. - label: ":nightmare: Full Nightly"
  50. trigger: nightly
  51. async: true
  52. branches: "v*.*rc*"
  53. build:
  54. commit: "$BUILDKITE_COMMIT"
  55. branch: "$BUILDKITE_BRANCH"
  56. env:
  57. BUILDKITE_TAG: "$BUILDKITE_TAG"