Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 3e6e472

Browse files
committed
Merge remote-tracking branch 'origin/master' into ag-debug-buf-truncate
2 parents f282c15 + 96e71b5 commit 3e6e472

File tree

177 files changed

+7890
-3841
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

177 files changed

+7890
-3841
lines changed

.gitlab-ci.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,15 @@ default:
8181
paths:
8282
- artifacts/
8383

84+
.prepare-env:
85+
before_script:
86+
# TODO: remove unset invocation when we'll be free from 'ENV RUSTC_WRAPPER=sccache' & sccache
87+
# itself in all images
88+
- unset RUSTC_WRAPPER
89+
# $WASM_BUILD_WORKSPACE_HINT enables wasm-builder to find the Cargo.lock from within generated
90+
# packages
91+
- export WASM_BUILD_WORKSPACE_HINT="$PWD"
92+
8493
.job-switcher:
8594
before_script:
8695
- if echo "$CI_DISABLED_JOBS" | grep -xF "$CI_JOB_NAME"; then echo "The job has been cancelled in CI settings"; exit 0; fi
@@ -89,6 +98,7 @@ default:
8998
image: "${CI_IMAGE}"
9099
before_script:
91100
- !reference [.job-switcher, before_script]
101+
- !reference [.prepare-env, before_script]
92102
tags:
93103
- kubernetes-parity-build
94104

@@ -115,9 +125,8 @@ default:
115125
.docker-env:
116126
image: "${CI_IMAGE}"
117127
before_script:
118-
# TODO: remove unset invocation when we'll be free from 'ENV RUSTC_WRAPPER=sccache' & sccache itself in all images
119-
- unset RUSTC_WRAPPER
120128
- !reference [.job-switcher, before_script]
129+
- !reference [.prepare-env, before_script]
121130
- !reference [.rust-info-script, script]
122131
- !reference [.rusty-cachier, before_script]
123132
- !reference [.pipeline-stopper-vars, script]
@@ -204,6 +213,10 @@ default:
204213
# this job runs only on nightly pipeline with the mentioned variable, against `master` branch
205214
- if: $CI_COMMIT_REF_NAME == "master" && $CI_PIPELINE_SOURCE == "schedule" && $PIPELINE == "nightly"
206215

216+
.scheduled-crate-publishing-pipeline:
217+
rules:
218+
- if: $CI_COMMIT_REF_NAME == "master" && $CI_PIPELINE_SOURCE == "schedule" && $PIPELINE == "automatic-crate-publishing"
219+
207220
.crates-publishing-template:
208221
stage: test
209222
extends: .docker-env

0 commit comments

Comments
 (0)