Skip to content

Commit 6336d3b

Browse files
committed
Task introduction
1 parent 4c6795f commit 6336d3b

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

docs/02-tasks/01-tasks-introduction.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,32 @@
22
id: tasks-introduction
33
title: Tasks Introduction
44
sidebar_label: Tasks Introduction
5-
---
5+
---
6+
7+
# Understanding Tasks in Your Pipeline
8+
9+
In a CI/CD pipeline, tasks are the fundamental building blocks that execute specific actions. Each task performs a defined operation, such as building a Unity project, running tests, or packaging the results for distribution. By chaining tasks together in a pipeline, you create a streamlined process that automates the entire lifecycle of your Unity project.
10+
11+
This Azure DevOps extension includes a variety of tasks specifically designed for Unity-based projects. These tasks simplify common workflows, ensuring consistency and efficiency at every stage of your development pipeline.
12+
13+
## How Tasks Work
14+
15+
1. **Sequence of Actions:** Tasks are executed in the order they are defined in the pipeline. Each task completes its operation before the next one begins.
16+
17+
2. **Configuration Options:** Each task comes with customizable options that allow you to tailor its behavior to your project's specific needs. For example, you can specify build targets, testing configurations, or output directories.
18+
19+
3. **Build Artifacts:** Once all tasks in a pipeline are completed, the final output—known as the "build artifact"—is ready for distribution or further testing. This could be a packaged application, a deployable build, or other output specific to your Unity project.
20+
21+
## Using Tasks in Your Pipeline
22+
23+
To include a task in your pipeline, you simply define it in the pipeline configuration file, specify its parameters, and arrange it in the correct sequence. This extension provides detailed documentation for each task, including its purpose, configuration options, and examples of usage.
24+
25+
In the next sections, you’ll find comprehensive guides for each task included in this extension. These guides will help you:
26+
27+
- Understand the role of each task in the pipeline.
28+
29+
- Configure tasks to suit your specific project requirements.
30+
31+
- Optimize your CI/CD pipeline for Unity development.
32+
33+
With these tools and resources, you’ll be able to build, test, and deploy your Unity projects with greater efficiency and confidence.

0 commit comments

Comments
 (0)