mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 23:31:07 +00:00
Convince GitLab not to crop collapsed multiline strings (#3971)
Use of `- >` instead of `- |` workarounds GitLab quirk when it crops collapsed multiline `script:` section commands in its CI job logs. This PR also fixes `- |` based `script:` steps to behave properly after `- >` conversion. Resolves https://github.com/paritytech/ci_cd/issues/972.
This commit is contained in:
committed by
GitHub
parent
3836376965
commit
ebdca15c19
@@ -23,7 +23,7 @@ test-linux-stable:
|
||||
- echo "Node index - ${CI_NODE_INDEX}. Total amount - ${CI_NODE_TOTAL}"
|
||||
# add experimental to features after https://github.com/paritytech/substrate/pull/14502 is merged
|
||||
# "upgrade_version_checks_should_work" is currently failing
|
||||
- |
|
||||
- >
|
||||
time cargo nextest run \
|
||||
--workspace \
|
||||
--locked \
|
||||
@@ -34,7 +34,7 @@ test-linux-stable:
|
||||
# Upload tests results to Elasticsearch
|
||||
- echo "Upload test results to Elasticsearch"
|
||||
- cat target/nextest/default/junit.xml | xq . > target/nextest/default/junit.json
|
||||
- |
|
||||
- >
|
||||
curl -v -XPOST --http1.1 \
|
||||
-u ${ELASTIC_USERNAME}:${ELASTIC_PASSWORD} \
|
||||
https://elasticsearch.parity-build.parity.io/unit-tests/_doc/${CI_JOB_ID} \
|
||||
@@ -87,7 +87,7 @@ test-linux-stable-runtime-benchmarks:
|
||||
# script:
|
||||
# # Build all but only execute 'runtime' tests.
|
||||
# - echo "Node index - ${CI_NODE_INDEX}. Total amount - ${CI_NODE_TOTAL}"
|
||||
# - |
|
||||
# - >
|
||||
# time cargo nextest run \
|
||||
# --workspace \
|
||||
# --locked \
|
||||
|
||||
Reference in New Issue
Block a user