Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
switch on and to latest alpha
  • Loading branch information
gnunicorn committed Feb 25, 2020
commit 628ffcf6a1640f4e38f90ed93b4e998c8e3ededb
19 changes: 10 additions & 9 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ variables:
CI_SERVER_NAME: "GitLab CI"
DOCKER_OS: "debian:stretch"
ARCH: "x86_64"
# FIXME set to release
CARGO_UNLEASH_INSTALL_PARAMS: "--version 1.0.0-alpha.6"
CARGO_UNLEASH_PKG_DEF: "--skip node node-* subkey chain-spec-builder"


.collect-artifacts: &collect-artifacts
Expand Down Expand Up @@ -175,8 +178,8 @@ test-dependency-rules:
script:
- .maintain/ensure-deps.sh
# FIXME set to release
- cargo install cargo-unleash --version 1.0.0-alpha.5
- cargo unleash check --skip node node-template subkey chain-spec-builder
- cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS}
- cargo unleash check ${CARGO_UNLEASH_PKG_DEF}

test-frame-staking:
stage: test
Expand Down Expand Up @@ -559,14 +562,12 @@ publish-to-crates-io:
dependencies:
- build-linux-substrate
- test-dependency-rules
# FIXME disabled for testing
# only:
# - tags
# - /^v[0-9]+\.[0-9]+\.[0-9]+.*$/
only:
- tags
- /^v[0-9]+\.[0-9]+\.[0-9]+.*$/
script:
# FIXME set to release
- cargo install cargo-unleash --version 1.0.0-alpha.5
- cargo unleash em-dragons --dry-run --skip node-template node-* subkey chain-spec-builder
- cargo install cargo-unleash ${CARGO_UNLEASH_INSTALL_PARAMS}
- cargo unleash em-dragons --no-check ${CARGO_UNLEASH_PKG_DEF}
interruptible: true
allow_failure: true

Expand Down