Skip to content

Commit

Permalink
Remove benchmark history check (#2732)
Browse files Browse the repository at this point in the history
  • Loading branch information
noamzbr committed Jan 28, 2024
1 parent 2ef42a0 commit 5db924d
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/benchmark-history.yml
Expand Up @@ -8,36 +8,36 @@
# along with Deepchecks. If not, see <http://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------------
#
name: Benchmark-History

on:
push:
branches: [ main ]
# Manual run
workflow_dispatch:

env:
DISABLE_DEEPCHECKS_ANONYMOUS_TELEMETRY: "true"

jobs:
benchmark-history:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup git user
run: |
git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)"
git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Set Up Env
run: make env
- name: pip freeze
run: make freeze
- name: Run benchmarks
run: |
.github/scripts/benchmark-history.sh
#name: Benchmark-History
#
#on:
# push:
# branches: [ main ]
# # Manual run
# workflow_dispatch:
#
#env:
# DISABLE_DEEPCHECKS_ANONYMOUS_TELEMETRY: "true"
#
#jobs:
# benchmark-history:
#
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v3
# - name: Setup git user
# run: |
# git config --global user.name "$(git --no-pager log --format=format:'%an' -n 1)"
# git config --global user.email "$(git --no-pager log --format=format:'%ae' -n 1)"
# - name: Set up Python 3.9
# uses: actions/setup-python@v3
# with:
# python-version: "3.9"
# - name: Set Up Env
# run: make env
# - name: pip freeze
# run: make freeze
# - name: Run benchmarks
# run: |
# .github/scripts/benchmark-history.sh

0 comments on commit 5db924d

Please sign in to comment.