33 Commits

Author SHA1 Message Date
openeuler-ci-bot
889d7db656 !45 batch synchronization
From: @jackchan8
Reviewed-by: @jing-rui
Signed-off-by: @jing-rui
2021-06-21 11:47:29 +00:00
chenjiankun
cef4d1953d batch synchronization 2021-06-18 15:46:44 +08:00
openeuler-ci-bot
131f3f204c !39 fix CVE-2021-27918
From: @jackchan8
Reviewed-by: @jing-rui
Signed-off-by: @jing-rui
2021-04-25 09:53:23 +08:00
chenjiankun
30db532fed fix CVE-2021-27918 2021-04-25 09:23:19 +08:00
openeuler-ci-bot
539e24a910 !34 [sync] PR-32: golang: speed up build progress
From: @openeuler-sync-bot
Reviewed-by: @jing-rui
Signed-off-by: @jing-rui
2021-04-16 16:28:32 +08:00
DCCooper
724c6a76ea golang: speed up build progress
Signed-off-by: DCCooper <1866858@gmail.com>
(cherry picked from commit 0953db6ef4af5a7e8042faf6d99801bd08e10815)
2021-04-16 09:36:55 +08:00
openeuler-ci-bot
e8c374c961 !31 golang: upgrade to 1.15.7
From: @DCCooper
Reviewed-by: @jing-rui
Signed-off-by: @jing-rui
2021-03-12 16:49:42 +08:00
DCCooper
76c5ebd313 golang: upgrade to 1.15.7
Fixes: #I3B1LK

Signed-off-by: DCCooper <1866858@gmail.com>
2021-03-12 16:17:36 +08:00
openeuler-ci-bot
9ec5fee370 !30 [sync] PR-29: fix cve
From: @openeuler-sync-bot
Reviewed-by: @jing-rui
Signed-off-by: @jing-rui
2021-02-26 09:59:46 +08:00
jingrui
373c1dfbaf golang: add fixes CVE-2021-3114
Signed-off-by: jingrui <jingrui@huawei.com>
(cherry picked from commit 79deab4eacbf1e09f03415d6bcd1f1fc1d35b452)
2021-02-25 10:12:44 +08:00
openeuler-ci-bot
6a6cbf4d77 !27 [sync] PR-26: golang: fix CVE-2021-3114
From: @openeuler-sync-bot
Reviewed-by: @jing-rui
Signed-off-by: @jing-rui
2021-02-23 21:13:22 +08:00
jingrui
1982f512d0 golang: fix CVE-2021-3114
Signed-off-by: jingrui <jingrui@huawei.com>
(cherry picked from commit 53d3de4bc619b8c4fdebfe896418684aa0c9b721)
2021-02-23 20:55:36 +08:00
openeuler-ci-bot
240cfd6196 !20 golang: sync cve fix
From: @jing-rui
Reviewed-by: @caihaomin
Signed-off-by: @caihaomin
2021-01-18 19:13:06 +08:00
jingrui
d2049ce1ac golang: sync cve fix
Signed-off-by: jingrui <jingrui@huawei.com>
2021-01-18 17:40:01 +08:00
openeuler-ci-bot
e3a26a1d24 !13 golang: upgrade to 1.13.15
Merge pull request !13 from Vanient/openEuler-20.03-LTS
2020-08-19 09:09:42 +08:00
xiadanni
e6f40e27fa golang: upgrade to 1.13.15
Signed-off-by: xiadanni <xiadanni1@huawei.com>
2020-08-18 20:36:44 +08:00
openeuler-ci-bot
aaf02659c7 !8 golang: sync code from master
Merge pull request !8 from DCCooper/openEuler-20.03-LTS
2020-05-14 09:41:15 +08:00
DCCooper
deb13bfa9d golang: sync code with CVE and cleancode
reason: 1. drop hard code cert
        2. rename tar name and make it same with upstream

Signed-off-by: DCCooper <1866858@gmail.com>
2020-05-12 17:08:40 +08:00
openeuler-ci-bot
bec40e0404 !6 golang: fix cve CVE-2020-7919
Merge pull request !6 from jing-rui/dev
2020-04-16 15:19:29 +08:00
jingrui
d9ea2f312b golang: fix cve CVE-2020-7919
Change-Id: I0c69fd3added6f82599c1cb9e4a1dbb02112de84
Signed-off-by: jingrui <jingrui@huawei.com>
2020-04-16 16:22:51 +08:00
openeuler-ci-bot
e798eb3158 !4 golang: remove unused requires "mercurial"
Merge pull request !4 from Grooooot/master
2020-02-21 17:16:20 +08:00
Grooooot
03aa981a87 golang: remove unused requires "mercurial"
Signed-off-by: Grooooot <isula@huawei.com>
2020-02-20 18:22:53 +08:00
openeuler-ci-bot
c85faa0eb9 !3 golang: fix patch 0012 format
Merge pull request !3 from Grooooot/master
2020-01-10 16:00:35 +08:00
Grooooot
1ce9a9033f golang: fix patch 0012 format
Signed-off-by: Grooooot <isula@huawei.com>
2020-01-10 10:06:14 +08:00
openeuler-ci-bot
7c558b7cdd !2 golang: modification of spec
Merge pull request !2 from Grooooot/master
2020-01-09 16:40:20 +08:00
Grooooot
8b0d150421 runtime: use innermost frame's func name for async preemption check
We don't asynchronously preempt if we are in the runtime. We do
this by checking the function name. However, it failed to take
inlining into account. If a runtime function gets inlined into
a non-runtime function, it can be preempted, and bad things can
happen. One instance of this is dounlockOSThread inlined into
UnlockOSThread which is in turn inlined into a non-runtime
function.

Fix this by using the innermost frame's function name.

Change-Id: Ifa036ce1320700aaaefd829b4bee0d04d05c395d
Reviewed-on: https://go-review.googlesource.com/c/go/+/211978
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Austin Clements <austin@google.com>
Signed-off-by: Grooooot <isula@huawei.com>
2020-01-08 15:04:53 +08:00
Grooooot
592bf09553 golang: modification of spec
Signed-off-by: Grooooot <isula@huawei.com>
2020-01-06 10:24:02 +08:00
openeuler-ci-bot
44eb8f78b5 !1 golang: modify source0 download address
Merge pull request !1 from Grooooot/master
2019-12-29 16:43:36 +08:00
openeuler-iSula
747b3d9598 golang: modify source0 download address
Signed-off-by: openeuler-iSula <isula@huawei.com>
2019-12-29 15:43:54 +08:00
dogsheng
ce820709f2 Package init 2019-12-25 15:47:08 +08:00
dogsheng
467816af2c Package init 2019-12-14 14:32:37 +08:00
dogsheng
f6abdd32e1 Package init 2019-12-13 15:19:17 +08:00
overweight
c29de2f632 Package init 2019-09-30 10:41:22 -04:00