123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # 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.
- BUILDKITE_BUILD_STATES = [
- "running",
- "scheduled",
- "passed",
- "failing",
- "failed",
- "blocked",
- "canceled",
- "canceling",
- "skipped",
- "not_run",
- "finished",
- ]
- BUILDKITE_FAILED_BUILD_STATES = [
- "failing",
- "failed",
- ]
- BUILDKITE_COMPLETED_BUILD_STATES = [
- "passed",
- "failed",
- "canceled",
- "skipped",
- "not_run",
- "finished",
- ]
- BUILDKITE_BUILD_STEP_STATES = [
- "assigned",
- "broken",
- "canceled",
- "failed",
- "passed",
- "running",
- "scheduled",
- "skipped",
- "timed_out",
- "unblocked",
- "waiting",
- "waiting_failed",
- ]
- BUILDKITE_COMPLETED_BUILD_STEP_STATES = [
- "broken",
- "canceled",
- "failed",
- "passed",
- "skipped",
- "timed_out",
- "waiting_failed",
- ]
- BUILDKITE_RELEVANT_COMPLETED_BUILD_STEP_STATES = [
- "failed",
- "passed",
- "timed_out",
- ]
- BUILDKITE_RELEVANT_FAILED_BUILD_STEP_STATES = [
- "failed",
- "timed_out",
- ]
|