Skip to content

Commit

Permalink
Update lesson 3 language
Browse files Browse the repository at this point in the history
  • Loading branch information
zsweger authored Oct 3, 2024
1 parent a7f68f0 commit 7c1390d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _episodes/03-filling_out_your_benchmark.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ include: "benchmarks/your_benchmark/Snakefile"

Once that's all setup, we can move on to actually adding these to our pipeline!

## The "simulate" rule
We now fill out the `simulate` rule in GitLab's pipelines. Currently the instructions for this rule should be contained in `benchmarks/your_benchmark/config.yml` as:
## The "simulate" pipeline stage
We now fill out the `simulate` stage in GitLab's pipelines. Currently the instructions for this rule should be contained in `benchmarks/your_benchmark/config.yml` as:
```yaml
your_benchmark:simulate:
extends: .phy_benchmark
Expand Down Expand Up @@ -223,9 +223,9 @@ your_benchmark:simulate:
- runner_system_failure
```

## The "results" rule
## The "results" pipeline stage

The `results` rule in `config.yml` is right now just this:
The `results` stage in `config.yml` is right now just this:
```yaml
your_benchmark:results:
extends: .phy_benchmark
Expand All @@ -234,7 +234,7 @@ your_benchmark:results:
- echo "I will collect results here!"
```

Specify that we need to finish the simulate rule first:
Specify that we need to finish the simulate stage first:
```yaml
needs:
- ["your_benchmark:simulate"]
Expand Down

0 comments on commit 7c1390d

Please sign in to comment.