Skip to content

Commit 6da0058

Browse files
authored
Add git push instructions
1 parent 300d547 commit 6da0058

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

_episodes/03-filling_out_your_benchmark.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ cp ../starting_script/macros/plot_rho_physics_benchmark.C benchmarks/your_benchm
140140
```
141141

142142

143+
143144
Your benchmark directory should now look like this:
144145
![Add a title]({{ page.root }}/fig/your_bench_dir_new.png)
145146

@@ -336,3 +337,32 @@ your_benchmark:analyze:
336337
- fi
337338
- echo "Finished copying!"
338339
```
340+
341+
## Testing Real Pipelines
342+
343+
We've set up our benchmark to do some real analysis! As a first test, let's make sure we're still running only over the simulation campaign. The `USE_SIMULATION_CAMPAIGN` in `setup.config` should be set to true.
344+
345+
Now let's add our changes and push them to GitHub!
346+
347+
```bash
348+
git status
349+
```
350+
This command should show something like this:
351+
![Add a title]({{ page.root }}/fig/gitstatus_example.png)
352+
353+
Now add all our changes:
354+
```bash
355+
git add benchmarks/your_benchmark/config.yml
356+
git add benchmarks/your_benchmark/Snakefile
357+
git add benchmarks/your_benchmark/analysis/uchannelrho.cxx
358+
git add benchmarks/your_benchmark/analyze.sh
359+
git add benchmarks/your_benchmark/macros/plot_rho_physics_benchmark.C
360+
git add benchmarks/your_benchmark/macros/RiceStyle.h
361+
git add benchmarks/your_benchmark/reconstruct.sh
362+
git add benchmarks/your_benchmark/setup.config
363+
git add benchmarks/your_benchmark/simulate.sh
364+
365+
git commit -m "I'm beefing up my benchmark!"
366+
git push origin pr/your_benchmark_<mylastname>
367+
```
368+

0 commit comments

Comments
 (0)