kopia lustrzana https://github.com/espressif/esp-idf
ci: Fix spurious pipeline failure when deploying a tag to GitHub
Everything succeeds, but because [ -z ${CI_COMMIT_TAG} ] on the last line returns non-zero, it fails the job.pull/2386/head
rodzic
4f227a4ce3
commit
7b4626f824
|
@ -388,9 +388,7 @@ push_to_github:
|
||||||
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
||||||
- git remote remove github &>/dev/null || true
|
- git remote remove github &>/dev/null || true
|
||||||
- git remote add github git@github.com:espressif/esp-idf.git
|
- git remote add github git@github.com:espressif/esp-idf.git
|
||||||
# Need separate push commands for tag builds and for branch builds
|
- tools/ci/push_to_github.sh
|
||||||
- "[ -n \"${CI_COMMIT_TAG}\" ] && git push github ${CI_COMMIT_TAG}"
|
|
||||||
- "[ -z \"${CI_COMMIT_TAG}\" ] && git push github ${CI_COMMIT_SHA}:refs/heads/${CI_COMMIT_REF_NAME}"
|
|
||||||
|
|
||||||
deploy_docs:
|
deploy_docs:
|
||||||
stage: host_test
|
stage: host_test
|
||||||
|
|
|
@ -21,6 +21,7 @@ tools/ci/checkout_project_ref.py
|
||||||
tools/ci/get-full-sources.sh
|
tools/ci/get-full-sources.sh
|
||||||
tools/ci/mirror-submodule-update.sh
|
tools/ci/mirror-submodule-update.sh
|
||||||
tools/ci/mirror-synchronize.sh
|
tools/ci/mirror-synchronize.sh
|
||||||
|
tools/ci/push_to_github.sh
|
||||||
tools/ci/test_build_system.sh
|
tools/ci/test_build_system.sh
|
||||||
tools/ci/test_configure_ci_environment.sh
|
tools/ci/test_configure_ci_environment.sh
|
||||||
tools/esp_app_trace/apptrace_proc.py
|
tools/esp_app_trace/apptrace_proc.py
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# gitlab-ci script to push current tested revision (tag or branch) to github
|
||||||
|
|
||||||
|
set -ex
|
||||||
|
|
||||||
|
if [ -n "${CI_COMMIT_TAG}" ]; then
|
||||||
|
# for tags
|
||||||
|
git push github "${CI_COMMIT_TAG}"
|
||||||
|
else
|
||||||
|
# for branches
|
||||||
|
git push github "${CI_COMMIT_SHA}:refs/heads/${CI_COMMIT_REF_NAME}"
|
||||||
|
fi
|
||||||
|
|
Ładowanie…
Reference in New Issue