toqubo-benchmark #127
This file contains 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: toqubo-benchmark | |
on: | |
workflow_dispatch: | |
push: | |
branches: [master] | |
jobs: | |
benchmark: | |
if: ${{ !(github.event_name == 'push') || contains(github.event.head_commit.message, '[run]') }} | |
name: Julia ${{ matrix.julia-version }}, Python ${{ matrix.python-version }} @ ${{ matrix.os }}/${{ matrix.arch }}/${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- julia-version: '1.9.0' | |
python-version: '3.10.6' | |
os: ubuntu-22.04 | |
arch: x64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
arch: ${{ matrix.arch }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install & Run Benchmarks | |
run: | | |
make install | |
make run | |
- name: Save Results | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token | |
run: | | |
git config --global user.name "PSR Actions" | |
git config --global user.email "suporte@psr-inc.com" | |
git add ./benchmark/**/results.*.csv | |
git add ./data/report.json | |
git commit -m "Save Benchmark Results [actions]" | |
git push |