mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 20:31:13 +00:00
f59bcd15da
* New slashing mechanism (#554) * Slashing improvements - unstake when balance too low - unstake after N slashes according to val prefs - don't early-terminate session/era unless unstaked - offline grace period before punishment * Fix warning * Cleanups and ensure slash_count decays * Bump authoring version and introduce needed authoring stub * Rename * Fix offline tracker * Fix offline tracker * Renames * Add test * Tests * Tests. * Remove accidental merge files. * Version bump, fixes (#572) * Bump version, don't propose invalid blocks * Fix build. * Fixes. * More fixes. * Fix tests. * Fix more tests * More tests fixed * Fix merge * Fix accidental merge bug * Fixes. * Staking failsafes - Don't slash/unstake/change session when too few staking participants - Introduce set_balance PrivCall * Make minimum validator count dynamic. * test fixes * Fix tests. * Fix tests * Fix tests, update readme. * Test with release. * Use safe math when dealing with total stake * Fix test again. * Fix grumbles.
89 lines
2.5 KiB
YAML
89 lines
2.5 KiB
YAML
stages:
|
|
- test
|
|
- build
|
|
|
|
image: parity/rust:gitlab-ci
|
|
|
|
variables:
|
|
CI_SERVER_NAME: "GitLab CI"
|
|
CARGO_HOME: "${CI_PROJECT_DIR}/cargo"
|
|
|
|
BUILD_TARGET: ubuntu
|
|
BUILD_ARCH: amd64
|
|
CARGO_TARGET: x86_64-unknown-linux-gnu
|
|
|
|
cache:
|
|
key: "${CI_JOB_NAME}"
|
|
paths:
|
|
- ${CI_PROJECT_DIR}/target/
|
|
- ${CI_PROJECT_DIR}/cargo/
|
|
|
|
.releaseable_branches: # list of git refs for building GitLab artifacts (think "pre-release binaries")
|
|
only: &releaseable_branches
|
|
- master
|
|
- stable
|
|
- beta
|
|
- tags
|
|
- gitlab-next
|
|
|
|
.publishable_branches: # list of git refs for publishing builds to the "production" locations
|
|
only: &publishable_branches
|
|
- nightly # Our nightly builds from schedule, on `master`
|
|
- "v*" # Our version tags
|
|
- gitlab-next
|
|
|
|
.collect_artifacts: &collect_artifacts
|
|
artifacts:
|
|
name: "${CI_JOB_NAME}_${CI_COMMIT_REF_NAME}"
|
|
when: on_success
|
|
expire_in: 1 mos
|
|
paths:
|
|
- target/release/polkadot
|
|
|
|
.determine_version: &determine_version |
|
|
export VERSION=$(grep -m 1 "version =" Cargo.toml | awk '{print $3}' | tr -d '"' | tr -d "\n")
|
|
echo "Version" $VERSION
|
|
|
|
|
|
#### stage: test
|
|
|
|
test:rust:stable: &test
|
|
stage: test
|
|
variables:
|
|
RUST_TOOLCHAIN: stable
|
|
TARGET: native
|
|
script:
|
|
- ./scripts/init.sh
|
|
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH"
|
|
- ./scripts/build.sh
|
|
- ./scripts/build-demos.sh
|
|
- time cargo test --all --release
|
|
tags:
|
|
- rust-stable
|
|
|
|
.optional_test: &optional_test
|
|
<<: *test
|
|
allow_failure: true
|
|
only:
|
|
- master
|
|
|
|
#### stage: build
|
|
|
|
build:linux:ubuntu:amd64: &build
|
|
stage: build
|
|
only: *releaseable_branches
|
|
variables:
|
|
CARGO_TARGET: x86_64-unknown-linux-gnu
|
|
TARGET: native
|
|
RUST_TOOLCHAIN: stable
|
|
script:
|
|
- ./scripts/init.sh
|
|
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH"
|
|
- ./scripts/build.sh
|
|
- ./scripts/build-demos.sh
|
|
- cargo build --release
|
|
<<: *collect_artifacts
|
|
tags:
|
|
- rust-stable
|
|
allow_failure: true
|