Switch to pixi with multi-env support #287
Workflow file for this run
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: Benchmark | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
permissions: | |
pull-requests: write | |
contents: read | |
jobs: | |
benchmark: | |
if: github.event_name == 'push' || !contains(github.event.pull_request.labels.*.name, 'no benchmark') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up conda env | |
uses: prefix-dev/[email protected] | |
with: | |
environments: py312 | |
- name: Install repository | |
run: pixi run -e py312 postinstall | |
- name: Cache models | |
uses: actions/cache@v3 | |
env: | |
cache-name: benchmark-model-cache | |
with: | |
path: examples/benchmark_models | |
key: models-${{ hashFiles('benchmark.py', '.github/workflows/benchmark.yml') }} | |
- name: Run benchmark | |
run: | | |
python benchmark.py | |
echo "_(benchmark **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**)_" >> result.md | |
cat benchmark.md >> result.md | |
shell: pixi run -e py312 bash {0} | |
- name: Comment on PR | |
uses: actions/github-script@v7 | |
if: github.event_name == 'pull_request' | |
with: | |
script: | | |
fs = require('fs') | |
const createOrUpdateComment = async ( | |
content, | |
) => { | |
// Get all comments | |
const comments = await github.rest.issues.listComments({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo | |
}) | |
// Check if any of the comments was posted by the bot and could be replaced | |
for (const comment of comments.data) { | |
if (comment.user?.login === 'github-actions[bot]') { | |
await github.rest.issues.updateComment({ | |
comment_id: comment.id, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: content | |
}) | |
return | |
} | |
} | |
// If not, post a new comment | |
await github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: content, | |
}) | |
} | |
createOrUpdateComment(fs.readFileSync('result.md', 'utf8')) | |
- name: Add benchmark to Job Summary | |
run: cat benchmark.md >> "$GITHUB_STEP_SUMMARY" |