mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
fc8d1765ef
* [WIP][ci] Split gitlab-ci config to separate files * add stage * move short benches * rename stage short_benchmark * include short-benchmarks * add check * add test stage * quickfix check-no-default-features * add build stage * add weights and publish * rename stage * rename stage * fix publish miner image * fix publish miner image * add dag * fix image * start build-short-benchmark with the pipeline * some more DAGs * empty line to short-benchmarks * add change from master Co-authored-by: parity-processbot <>
28 lines
1006 B
YAML
28 lines
1006 B
YAML
# This file is part of .gitlab-ci.yml
|
|
# Here are all jobs that are executed during "short-benchmarks" stage
|
|
|
|
# Run all pallet benchmarks only once to check if there are any errors
|
|
short-benchmark-polkadot: &short-bench
|
|
stage: short-benchmarks
|
|
extends:
|
|
- .test-pr-refs
|
|
- .docker-env
|
|
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
|
|
needs:
|
|
- job: build-short-benchmark
|
|
artifacts: true
|
|
variables:
|
|
RUNTIME: polkadot
|
|
script:
|
|
- ./artifacts/polkadot benchmark pallet --execution wasm --wasm-execution compiled --chain $RUNTIME-dev --pallet "*" --extrinsic "*" --steps 2 --repeat 1
|
|
|
|
short-benchmark-kusama:
|
|
<<: *short-bench
|
|
variables:
|
|
RUNTIME: kusama
|
|
|
|
short-benchmark-westend:
|
|
<<: *short-bench
|
|
variables:
|
|
RUNTIME: westend
|