From c1570c152fb58bd470da1decb096576084a30d53 Mon Sep 17 00:00:00 2001 From: Bo Qiao Date: Sun, 8 May 2022 08:51:21 +0800 Subject: [PATCH] bisect at 5bb3b0ee7 --- .github/workflows/performance_monitoring.yml | 33 -------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/performance_monitoring.yml diff --git a/.github/workflows/performance_monitoring.yml b/.github/workflows/performance_monitoring.yml deleted file mode 100644 index e2bbded40..000000000 --- a/.github/workflows/performance_monitoring.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Performance Monitoring -on: - push: - branches: - - master - -jobs: - gpu_backends: - name: Performance monitoring (NVIDIA GPU) - timeout-minutes: 60 - # Disable this workflow on forks - if: github.repository_owner == 'taichi-dev' - runs-on: [self-hosted, x64, cuda, linux, benchmark] - steps: - - uses: actions/checkout@v2 - with: - submodules: "recursive" - - - name: Build & Install - run: | - .github/workflows/scripts/unix_build.sh - python3 -m pip install dist/*.whl - - - name: Run performance-monitoring - run: | - cd .. - rm -rf performance-monitoring - git clone git@github.com:taichi-dev/performance-monitoring.git - cd performance-monitoring - export WORKFLOW_MODE=postsubmit - ./run.sh - env: - GITHUB_CONTEXT: ${{ toJson(github) }}