Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
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
12 changes: 9 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@ cargo-deny:
- schedules
- tags
- web
except:
variables:
- $CI_COMMIT_MESSAGE =~ /skip-checks/
script:
- cargo deny check --hide-inclusion-graph -c .maintain/deny.toml
after_script:
Expand Down Expand Up @@ -273,6 +276,9 @@ unleash-check:
only:
- master
- tags
except:
variables:
- $CI_COMMIT_MESSAGE =~ /skip-checks/
script:
- cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS}
- cargo unleash check ${CARGO_UNLEASH_PKG_DEF}
Expand Down Expand Up @@ -495,7 +501,7 @@ build-rust-doc:
- ./crate-docs/
script:
- rm -f ./crate-docs/index.html # use it as an indicator if the job succeeds
- BUILD_DUMMY_WASM_BINARY=1 RUSTDOCFLAGS="--html-in-header $(pwd)/.maintain/rustdoc-header.html"
- BUILD_DUMMY_WASM_BINARY=1 RUSTDOCFLAGS="--html-in-header $(pwd)/.maintain/rustdoc-header.html"
time cargo +nightly doc --no-deps --workspace --all-features --verbose
- mv ./target/doc ./crate-docs
- echo "<meta http-equiv=refresh content=0;url=sc_service/index.html>" > ./crate-docs/index.html
Expand Down Expand Up @@ -525,7 +531,7 @@ docker-build-chaos: &docker-build-chaos
needs:
- job: build-linux-substrate
image: docker:stable
tags:
tags:
- kubernetes-parity-build
variables:
<<: *default-vars
Expand Down Expand Up @@ -564,7 +570,7 @@ chaos-test-singlenodeheight:
image: parity/chaostools:latest
needs:
- job: docker-build-chaos
tags:
tags:
- parity-chaos
variables:
<<: *default-vars
Expand Down
Loading