Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: Run Benchmarks

on:
workflow_dispatch:
workflow_dispatch:
pull_request:
types: [labeled, synchronize, opened, reopened]
branches:
- main
- releases

jobs:
benchmark:
Expand Down Expand Up @@ -35,7 +40,6 @@ jobs:
env:
BASE_BRANCH: ${{ github.event.pull_request.base.ref }}
GITHUB_BRANCH_NAME: ${{ steps.branch-name.outputs.current_branch }}

id: check_runtime
if: contains( github.event.pull_request.labels.*.name, 'needs-benchmarks')
run: .maintain/check_runtime.sh
Expand All @@ -44,7 +48,6 @@ jobs:
env:
BASE_BRANCH: ${{ github.event.pull_request.base.ref }}
GITHUB_BRANCH_NAME: ${{ steps.branch-name.outputs.current_branch }}

if: env.RUNTIME_CHECK == 1
id: run_benchmarks
run: .maintain/run_benchmarks.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Run Simnode

on:
workflow_dispatch:
pull_request:
types: [ labeled, synchronize, opened, reopened ]
branches:
- main
- releases

jobs:
simnode:
Expand Down Expand Up @@ -31,16 +36,16 @@ jobs:

- name: Check for runtime changes
id: check_runtime
if: contains( github.event.pull_request.labels.*.name, 'needs-simnode')
env:
BASE_BRANCH: ${{ github.event.pull_request.base.ref }}
GITHUB_BRANCH_NAME: ${{ steps.branch-name.outputs.current_branch }}

run: .maintain/check_runtime.sh

- name: Run Simnode
env:
BASE_BRANCH: ${{ github.event.pull_request.base.ref }}
GITHUB_BRANCH_NAME: ${{ steps.branch-name.outputs.current_branch }}
if: contains( github.event.pull_request.labels.*.name, 'needs-simnode') && env.RUNTIME_CHECK == 1
if: env.RUNTIME_CHECK == 1
id: run_simnode
run: .maintain/run_simnode.sh
25 changes: 0 additions & 25 deletions .github/workflows/slash.yml

This file was deleted.