We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aab643f commit 6117644Copy full SHA for 6117644
.github/workflows/ci.yml
@@ -68,6 +68,7 @@ jobs:
68
timeout-minutes: 360
69
env:
70
CI_JOB_NAME: ${{ matrix.name }}
71
+ CI_JOB_DOC_URL: ${{ matrix.doc_url }}
72
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
73
# commit of PR sha or commit sha. `GITHUB_SHA` is not accurate for PRs.
74
HEAD_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
src/ci/run.sh
@@ -6,6 +6,10 @@ if [ -n "$CI_JOB_NAME" ]; then
6
echo "[CI_JOB_NAME=$CI_JOB_NAME]"
7
fi
8
9
+if [ -n "$CI_JOB_DOC_URL" ]; then
10
+ echo "[CI_JOB_DOC_URL=$CI_JOB_DOC_URL]"
11
+fi
12
+
13
if [ "$NO_CHANGE_USER" = "" ]; then
14
if [ "$LOCAL_USER_ID" != "" ]; then
15
id -u user &>/dev/null || useradd --shell /bin/bash -u $LOCAL_USER_ID -o -c "" -m user
0 commit comments