Merge branch 'bugfix/push_release_branches' into 'master'
build/CI: Push release branches to github Previously CI deployment only pushed to master. See merge request !579
This commit is contained in:
commit
f784381c32
1 changed files with 9 additions and 1 deletions
|
@ -225,6 +225,7 @@ push_master_to_github:
|
||||||
image: espressif/esp32-ci-env
|
image: espressif/esp32-ci-env
|
||||||
variables:
|
variables:
|
||||||
GIT_STRATEGY: clone
|
GIT_STRATEGY: clone
|
||||||
|
GITHUB_PUSH_REFS: refs/remotes/origin/release refs/remotes/origin/master
|
||||||
script:
|
script:
|
||||||
- mkdir -p ~/.ssh
|
- mkdir -p ~/.ssh
|
||||||
- chmod 700 ~/.ssh
|
- chmod 700 ~/.ssh
|
||||||
|
@ -233,7 +234,14 @@ push_master_to_github:
|
||||||
- chmod 600 ~/.ssh/id_rsa
|
- chmod 600 ~/.ssh/id_rsa
|
||||||
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
|
||||||
- git remote add github git@github.com:espressif/esp-idf.git
|
- git remote add github git@github.com:espressif/esp-idf.git
|
||||||
- git push --follow-tags github HEAD
|
# What the next line of script does: goes through the list of refs for all branches we push to github,
|
||||||
|
# generates a snippet of shell which is evaluated. The snippet checks CI_BUILD_REF against the SHA
|
||||||
|
# (aka objectname) at tip of each branch, and if any SHAs match then it checks out the local branch
|
||||||
|
# and then pushes that ref to a corresponding github branch
|
||||||
|
#
|
||||||
|
# NB: In gitlab 9.x, CI_BUILD_REF was deprecated. New name is CI_COMMIT_REF. If below command suddenly
|
||||||
|
# generates bash syntax errors, this is probably why.
|
||||||
|
- eval $(git for-each-ref --shell bash --format 'if [ $CI_BUILD_REF == %(objectname) ]; then git checkout -b %(refname:strip=3); git push --follow-tags github %(refname:strip=3); fi;' $GITHUB_PUSH_REFS)
|
||||||
|
|
||||||
|
|
||||||
deploy_docs:
|
deploy_docs:
|
||||||
|
|
Loading…
Reference in a new issue