1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # 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
- env:
- CI_BAZEL_BUILD: 1
- CI_BAZEL_REMOTE_CACHE: $BAZEL_REMOTE_CACHE
- steps:
- - command: bin/ci-builder run nightly ci/deploy/devsite.sh
- branches: main
- timeout_in_minutes: 60
- agents:
- queue: linux-x86_64
- concurrency: 1
- concurrency_group: deploy/devsite
- - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy.docker
- timeout_in_minutes: 30
- agents:
- queue: linux-x86_64-small
- concurrency: 1
- concurrency_group: deploy/linux
- - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy.pypi
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy/pypi
- agents:
- queue: linux-x86_64-small
- - command: bin/ci-builder run stable bin/pyactivate -m ci.deploy.npm
- timeout_in_minutes: 30
- concurrency: 1
- concurrency_group: deploy/npm
- agents:
- queue: linux-x86_64-small
- - label: ":bulb: Full SQL Logic Tests"
- trigger: slt
- async: true
- branches: "v*.*rc*"
- build:
- commit: "$BUILDKITE_COMMIT"
- branch: "$BUILDKITE_BRANCH"
- env:
- BUILDKITE_TAG: "$BUILDKITE_TAG"
- - label: ":nightmare: Full Nightly"
- trigger: nightly
- async: true
- branches: "v*.*rc*"
- build:
- commit: "$BUILDKITE_COMMIT"
- branch: "$BUILDKITE_BRANCH"
- env:
- BUILDKITE_TAG: "$BUILDKITE_TAG"
|