Skip to content

Test d script #2264

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updates
  • Loading branch information
jainapurva committed May 24, 2025
commit 33012abf19b5acc84f4cd01f2e0f43263a6e90c9
20 changes: 8 additions & 12 deletions .github/workflows/run_microbenchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
name: Microbenchmarks-Perf-Nightly

on:
pull_request:
branches:
- main
# Uncomment below for nightly runs
# push:
# tags:
# - ciflow/benchmark/*
# workflow_dispatch:
# schedule:
# - cron: '0 7 * * *' # Run daily at 7 AM UTC
push:
tags:
- ciflow/benchmark/*
workflow_dispatch:
schedule:
- cron: '0 3 * * *' # Run daily at 7 AM UTC

jobs:
benchmark:
Expand Down Expand Up @@ -40,8 +36,8 @@ jobs:
${CONDA_RUN} pip install -r dev-requirements.txt
${CONDA_RUN} pip install .

# Set PYTHONPATH to include the benchmarks directory
${CONDA_RUN} export PYTHONPATH=$PYTHONPATH:$(pwd)/benchmarks
# Set PYTHONPATH to current directory (.) if not set, and include the benchmarks directory
${CONDA_RUN} export PYTHONPATH="${PYTHONPATH:-$(pwd)}:$(pwd)/benchmarks"

# Create benchmark results directory
mkdir -p ${{ runner.temp }}/benchmark-results
Expand Down
Loading