Updated cachegrind run command

This commit is contained in:
Allan Jeremy 2022-05-24 10:55:32 +03:00
parent 7cb82e2979
commit a2dfb4aeb4

View file

@ -47,13 +47,13 @@ jobs:
- name: Run benchmark
run: |
python bench/bench.py | tee ../${{ matrix.bench.script }}-output.txt
ls
ls scripts
- name: Run ${{ matrix.bench.title }} (Cold Cachegrind)
run: sudo ./scripts/run-with-cachegrind.sh python bench/bench.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 | tee -a ${{ matrix.bench.script }}-output.txt
run: sudo bash ./scripts/run-with-cachegrind.sh python bench/bench.py "${{ matrix.bench.cachegrindTitle}}Cold" 1 | tee -a ${{ matrix.bench.script }}-output.txt
- name: Run ${{ matrix.bench.title }} (Warm Cachegrind)
run: sudo ./scripts/run-with-cachegrind.sh python bench/bench.py "${{ matrix.bench.cachegrindTitle }}" ${{ matrix.bench.cachegrindIterCount }} | tee -a ${{ matrix.bench.script }}-output.txt
run: sudo bash ./scripts/run-with-cachegrind.sh python bench/bench.py "${{ matrix.bench.cachegrindTitle }}" ${{ matrix.bench.cachegrindIterCount }} | tee -a ${{ matrix.bench.script }}-output.txt
- name: Navigate to root dir, create gh-pages dir then navigate into it
run: cd .. && mkdir gh-pages && cd gh-pages