mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
ci: Run nightly benchmark against nightly n8n image (no-changelog) (#10588)
This commit is contained in:
parent
eb074c04c9
commit
47eb28d767
6
.github/workflows/benchmark-nightly.yml
vendored
6
.github/workflows/benchmark-nightly.yml
vendored
|
@ -1,5 +1,5 @@
|
||||||
name: Run Nightly Benchmark
|
name: Run Nightly Benchmark
|
||||||
run-name: Benchmark ${{ inputs.n8n_tag }}
|
run-name: Benchmark ${{ inputs.n8n_tag || 'nightly' }}
|
||||||
|
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
|
@ -60,10 +60,10 @@ jobs:
|
||||||
|
|
||||||
- name: Run the benchmark with debug logging
|
- name: Run the benchmark with debug logging
|
||||||
if: github.event.inputs.debug == 'true'
|
if: github.event.inputs.debug == 'true'
|
||||||
run: pnpm run-in-cloud --debug
|
run: pnpm run-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }} --debug
|
||||||
working-directory: packages/@n8n/benchmark
|
working-directory: packages/@n8n/benchmark
|
||||||
|
|
||||||
- name: Run the benchmark
|
- name: Run the benchmark
|
||||||
if: github.event.inputs.debug != 'true'
|
if: github.event.inputs.debug != 'true'
|
||||||
run: pnpm run-in-cloud
|
run: pnpm run-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }}
|
||||||
working-directory: packages/@n8n/benchmark
|
working-directory: packages/@n8n/benchmark
|
||||||
|
|
Loading…
Reference in a new issue