Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
SyMind committed Dec 18, 2024
1 parent 9a986a2 commit 4b00387
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/clean/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
run: |
git config --system core.longpaths true
rm -rf node_modules
git clean -ffdx -e target
git clean -ffdx
git reset --hard HEAD
- name: Clean Large Directories by Size
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
native: ${{ needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS == '"ubuntu-latest"' }}
runner: ${{ needs.get-runner-labels.outputs.LINUX_RUNNER_LABELS }}
skipable: ${{ needs.check-changed.outputs.changed != 'true' }}
bench: true

test-release-linux:
name: Test Release Linux
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ on:
type: boolean
required: false
default: true
bench: # Run benchmarks?
type: boolean
required: false
default: true
ref: # Git reference to checkout
required: false
type: string
Expand Down Expand Up @@ -390,6 +394,7 @@ jobs:

bench:
needs: build
if: inputs.bench
runs-on: ${{ fromJSON(needs.build.outputs.runner-labels) }}
steps:
- name: Checkout
Expand Down

0 comments on commit 4b00387

Please sign in to comment.