Trigger on push #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: run benchmark | ||
| on: | ||
| workflow_dispatch: | ||
| on: | ||
| push: | ||
| branches: | ||
| - plot_ci | ||
| jobs: | ||
| soa-benchmark: | ||
| runs-on: cern-nextgen-h100 | ||
| container: registry.cern.ch/ngt-wp1.7/wp1.7-soa-benchmark:latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: build and compile | ||
| run: | | ||
| cmake -B ${{github.workspace}}/build | ||
| cmake --build ${{github.workspace}}/build | ||
| - name: run benchmarks | ||
| run: | | ||
| python3 plot.py ${{github.workspace}}/build | ||
| - name: upload results | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| path: ${{github.workspace}}/build/*.png | ||
| # - name: run soa_wrapper | ||
| # run: | | ||
| # ${{github.workspace}}/build/soa_wrapper | ||
| # - name: run soa_boost | ||
| # run: | | ||
| # ${{github.workspace}}/build/soa_boost | ||