chore: resolve a circular dependency, update other dependencies, etc.… #148
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: synth-bench | |
on: | |
push: | |
branches: [ master ] | |
paths: [ '**/*.rs', '.github/workflows/synth-bench.yml' ] | |
env: | |
BENCHPATH: /home/runner/work/synth/synth/synth | |
RUSTFLAGS: "-D warnings" | |
jobs: | |
synth_bench: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install valgrind | |
run: | | |
sudo apt-get update | |
sudo apt-get install --yes --no-install-recommends valgrind | |
- uses: actions/checkout@v2 | |
- uses: dtolnay/rust-toolchain@nightly | |
- uses: actions/setup-python@v2 | |
- name: run benchmark | |
id: bench | |
run: | | |
body=$(cargo +nightly bench --manifest-path /home/runner/work/synth/synth/synth/Cargo.toml) | |
body="${body//'%'/'%25'}" | |
body="${body//$'\n'/'%0A'}" | |
body="${body//$'\r'/'%0D'}" | |
echo ::set-output name=body::$body | |
- name: comment with benchmark results | |
env: | |
BODY: ${{ steps.bench.outputs.body }} | |
uses: actions/github-script@v4 | |
if: github.event_name == 'pull_request' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const { issue: { number: issue_number }, repo: { owner, repo } } = context; | |
github.issues.createComment({ issue_number, owner, repo, body: process.env.BODY }); |