-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into unusedparams
- Loading branch information
Showing
7 changed files
with
10 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
- '*.*' | ||
env: | ||
GOPATH: /tmp/go | ||
GO_VERSION: 1.19.x | ||
GO_VERSION: 1.20.x | ||
|
||
jobs: | ||
binary: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
|
||
env: | ||
GOPATH: /tmp/go | ||
GO_VERSION: 1.19.x | ||
GO_VERSION: 1.20.x | ||
|
||
jobs: | ||
binary: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,12 +59,10 @@ ifeq ($(E2E_REPO_PATH),"") | |
if [[ -n "${REMOTE_E2E_BRANCH}" ]]; then \ | ||
git config --global user.email "[email protected]"; \ | ||
git config --global user.name "Devtools"; \ | ||
# retrieve the branch name \ | ||
BRANCH_NAME=`echo ${BRANCH_REF} | awk -F'/' '{print $$3}'`; \ | ||
# add the user's fork as remote repo \ | ||
git --git-dir=${E2E_REPO_PATH}/.git --work-tree=${E2E_REPO_PATH} remote add external ${AUTHOR_LINK}/toolchain-e2e.git; \ | ||
# fetch the branch \ | ||
git --git-dir=${E2E_REPO_PATH}/.git --work-tree=${E2E_REPO_PATH} fetch external ${BRANCH_REF}; \ | ||
# fetch the branch \ | ||
git --git-dir=${E2E_REPO_PATH}/.git --work-tree=${E2E_REPO_PATH} fetch external ${REMOTE_E2E_BRANCH}; \ | ||
# merge the branch with master \ | ||
git --git-dir=${E2E_REPO_PATH}/.git --work-tree=${E2E_REPO_PATH} merge --allow-unrelated-histories --no-commit FETCH_HEAD; \ | ||
fi; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,8 @@ ENV LANG=en_US.utf8 \ | |
PATH=$PATH:$GOPATH/bin \ | ||
GIT_COMMITTER_NAME=devtools \ | ||
[email protected] \ | ||
GOLANG_VERSION=go1.19.7 \ | ||
GOLANG_SHA256=7a75720c9b066ae1750f6bcc7052aba70fa3813f4223199ee2a2315fd3eb533d | ||
GOLANG_VERSION=go1.20.11 \ | ||
GOLANG_SHA256=ef79a11aa095a08772d2a69e4f152f897c4e96ee297b0dc20264b7dec2961abe | ||
|
||
ARG GO_PACKAGE_PATH=github.com/codeready-toolchain/registration-service | ||
|
||
|