From cedc585fe51adf0bdebe76d77a2ba49dec922c28 Mon Sep 17 00:00:00 2001 From: Clara van Staden Date: Tue, 9 Apr 2024 16:17:30 +0200 Subject: [PATCH] fix ci (#136) Co-authored-by: claravanstaden --- .github/workflows/smoketest.yml | 4 --- .github/workflows/subsystem-benchmarks.yml | 42 ---------------------- 2 files changed, 46 deletions(-) delete mode 100644 .github/workflows/subsystem-benchmarks.yml diff --git a/.github/workflows/smoketest.yml b/.github/workflows/smoketest.yml index e79aba522915..0dd59fb800e2 100644 --- a/.github/workflows/smoketest.yml +++ b/.github/workflows/smoketest.yml @@ -2,10 +2,6 @@ name: bridge on: push: - paths: - - "bridges/snowbridge/**" - - "!bridges/snowbridge/README.md" - - "!bridges/snowbridge/LICENSE" branches: - snowbridge workflow_dispatch: diff --git a/.github/workflows/subsystem-benchmarks.yml b/.github/workflows/subsystem-benchmarks.yml deleted file mode 100644 index 37a9e0f4680c..000000000000 --- a/.github/workflows/subsystem-benchmarks.yml +++ /dev/null @@ -1,42 +0,0 @@ -# The actions takes json file as input and runs github-action-benchmark for it. - -on: - workflow_dispatch: - inputs: - benchmark-data-dir-path: - description: "Path to the benchmark data directory" - required: true - type: string - output-file-path: - description: "Path to the benchmark data file" - required: true - type: string - -jobs: - subsystem-benchmarks: - runs-on: ubuntu-latest - steps: - - name: Checkout Sources - uses: actions/checkout@v4.1.2 - with: - fetch-depth: 0 - ref: "gh-pages" - - - name: Copy bench results - id: step_one - run: | - cp bench/gitlab/${{ github.event.inputs.output-file-path }} ${{ github.event.inputs.output-file-path }} - - - name: Switch branch - id: step_two - run: | - git checkout master - - - name: Store benchmark result - uses: benchmark-action/github-action-benchmark@v1 - with: - tool: "customSmallerIsBetter" - output-file-path: ${{ github.event.inputs.output-file-path }} - benchmark-data-dir-path: "bench/${{ github.event.inputs.benchmark-data-dir-path }}" - github-token: ${{ secrets.GITHUB_TOKEN }} - auto-push: true