Exploring Jobs in GitHub
In GitHub Actions, jobs are essential components of workflows. They define what tasks should be executed, where they run, and how they interact with other jobs. Let’s explore the details of jobs in GitHub workflows.
What are Jobs?
Definition:
A job is a sequence of steps that execute in the same runner environment.
Key Features:
Each job runs independently by default.
Jobs can run in parallel or sequentially, depending on dependencies.
Jobs specify the virtual environment (runner) where they execute.
Syntax of Jobs
xxxxxxxxxx
81jobs
2 job_id
3 name Job Name
4 runs-on runner-environment
5 needs other_job_id
6 steps
7name Step Name
8 run Command or Action
Key Elements
job_id
: A unique identifier for the job. Example:build
,test
,deploy
.name
: A descriptive name for the job (optional). Example:name: Build and Test Application
.runs-on
: Specifies the runner environment for the job. Examples:ubuntu-latest
,windows-latest
,macos-latest
.needs
: Specifies dependencies on other jobs, ensuring they run first.steps
: A list of actions or commands the job will execute.
Parallel vs Sequential Job Execution
Parallel Jobs (Default Behavior)
Jobs run in parallel unless dependencies are specified.
xxxxxxxxxx
91jobs
2 test
3 runs-on ubuntu-latest
4 steps
5run echo "Running tests"
6 lint
7 runs-on ubuntu-latest
8 steps
9run echo "Running linter"
Sequential Jobs (Using needs
)
The needs
keyword creates dependencies, ensuring jobs run in order.
xxxxxxxxxx
151jobs
2 build
3 runs-on ubuntu-latest
4 steps
5run echo "Building application"
6 test
7 runs-on ubuntu-latest
8 needs build
9 steps
10run echo "Running tests"
11 deploy
12 runs-on ubuntu-latest
13 needs test
14 steps
15run echo "Deploying application"
Specifying Runner Environments
The runs-on
keyword determines the operating system and environment for the job.
Common Environments:
ubuntu-latest
(Linux)windows-latest
(Windows)macos-latest
(macOS)
Self-Hosted Runners: For custom environments:
xxxxxxxxxx
11runs-on self-hosted
Defining Job Steps
Each job contains multiple steps.
Steps can include:
Use predefined actions.
Run custom shell commands.
Example:
xxxxxxxxxx
101jobs
2 example-job
3 runs-on ubuntu-latest
4 steps
5name Checkout code
6 uses actions/checkout@v3
7name Install dependencies
8 run npm install
9name Run tests
10 run npm test
Environment Variables in Jobs
You can define environment variables at the job level, making them available to all steps.
xxxxxxxxxx
71jobs
2 example-job
3 runs-on ubuntu-latest
4 env
5 NODE_ENV production
6 steps
7run echo $NODE_ENV
Outputs in Jobs
Jobs can produce outputs that other jobs can use.
Example:
xxxxxxxxxx
131jobs
2 build
3 runs-on ubuntu-latest
4 outputs
5 artifact-path $ steps.upload.outputs.path
6 steps
7id upload
8 run echo "::set-output name=path::build/artifact.zip"
9 deploy
10 runs-on ubuntu-latest
11 needs build
12 steps
13run echo "Artifact path: ${{ needs.build.outputs.artifact-path }}"
Timeouts in Jobs
Jobs can be terminated if they exceed a specified duration using timeout-minutes
.
xxxxxxxxxx
61jobs
2 example-job
3 runs-on ubuntu-latest
4 timeout-minutes10
5 steps
6run sleep 600
Job Strategies: Matrix Builds
The strategy
keyword allows you to run jobs with different configurations (e.g., multiple versions of Node.js).
xxxxxxxxxx
131jobs
2 test
3 runs-on ubuntu-latest
4 strategy
5 matrix
6 node-version 12 14 16
7 steps
8name Set up Node.js
9 uses actions/setup-node@v3
10 with
11 node-version $ matrix.node-version
12name Run tests
13 run npm test
Output:
Runs the test
job three times, once for each Node.js version.
Job Permissions
Jobs can be restricted to certain permissions when accessing GitHub's API or repository contents.
xxxxxxxxxx
71jobs
2 example-job
3 runs-on ubuntu-latest
4 permissions
5 contents read
6 steps
7run echo "Restricted job permissions"
Common Use Cases for Jobs
Build and Test Pipelines: Compile and test code for multiple environments.
Deployment: Deploy applications after passing tests.
Static Analysis: Run linters and security checks.
Artifacts: Build and save artifacts for future jobs or workflows.
Summary
Jobs are flexible and powerful, enabling parallelization, dependencies, and tailored configurations for complex automation workflows.
Leave a Reply