Skip to content
Snippets Groups Projects
Commit 50a5ccac authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Add git config author name and email

parent 2279ee7d
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,8 @@ variables:
PKR_VAR_ssh_username: "centos"
PKR_VAR_networks: '["7ac7d980-20bc-4e53-8528-6809e139fdcc"]'
PKR_VAR_build_instance_name: "ood-${CI_COMMIT_SHORT_SHA}"
GIT_AUTHOR_NAME: "Gitlab runner"
GIT_AUTHOR_EMAIL: "gitlab@runner"
cache:
paths:
......@@ -51,6 +53,8 @@ setup_environment:
git remote add upstream https://github.com/jprorama/CRI_XCBC.git
fi
- >
git config user.name "${GIT_AUTHOR_NAME}";
git config user.email "${GIT_AUTHOR_EMAIL}";
git fetch upstream;
git checkout -b integration;
git merge upstream/uab-dev;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment