cdx-proto
    Preparing search index...

    Enumeration TaskType

    from enum cyclonedx.v1_6.TaskType

    Index

    Enumeration Members

    BUILD: 5

    A task that builds the source code, dependencies and/or data into an artifact that can be deployed to and executed on target systems.

    from enum value: TASK_TYPE_BUILD = 5;

    CLEAN: 10

    A task that cleans unnecessary tools, build artifacts and/or data from workflow storage.

    from enum value: TASK_TYPE_CLEAN = 10;

    CLONE: 1

    A task that clones a software repository into the workflow in order to retrieve its source code or data for use in a build step.

    from enum value: TASK_TYPE_CLONE = 1;

    COPY: 0

    A task that copies software or data used to accomplish other tasks in the workflow. buf:lint:ignore ENUM_ZERO_VALUE_SUFFIX -- value 0 is a fallback(meaning "unspecified") in protobuf3. this usage here is an error; it shall be fixed with v2.0 of this very schema

    from enum value: TASK_TYPE_COPY = 0;

    DELIVER: 7

    A task that delivers a built artifact to one or more target repositories or storage systems.

    from enum value: TASK_TYPE_DELIVER = 7;

    DEPLOY: 8

    A task that deploys a built artifact for execution on one or more target systems.

    from enum value: TASK_TYPE_DEPLOY = 8;

    LINT: 2

    A task that checks source code for programmatic and stylistic errors.

    from enum value: TASK_TYPE_LINT = 2;

    MERGE: 4

    A task that merges changes or fixes into source code prior to a build step in the workflow.

    from enum value: TASK_TYPE_MERGE = 4;

    OTHER: 11

    A workflow task that does not match current task type definitions.

    from enum value: TASK_TYPE_OTHER = 11;

    RELEASE: 9

    A task that releases a built, versioned artifact to a target repository or distribution system.

    from enum value: TASK_TYPE_RELEASE = 9;

    SCAN: 3

    A task that performs a scan against source code, or built or deployed components and services. Scans are typically run to gather or test for security vulnerabilities or policy compliance.

    from enum value: TASK_TYPE_SCAN = 3;

    TEST: 6

    A task that verifies the functionality of a component or service.

    from enum value: TASK_TYPE_TEST = 6;