Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
certo
go
Commits
a1731fd3
Commit
a1731fd3
authored
Oct 31, 2024
by
Vladimir Bashkirtsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed testing of go 1.22.8
parent
bc953208
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Makefile
Makefile
+4
-4
No files found.
Makefile
View file @
a1731fd3
temporary
:
temporary
:
dd
if
=
/dev/zero
of
=
swap
bs
=
1048576
count
=
102
4
dd
if
=
/dev/zero
of
=
swap
bs
=
1048576
count
=
614
4
chmod
600 swap
chmod
600 swap
mkswap swap
mkswap swap
swapon swap
swapon swap
...
@@ -57,17 +57,17 @@ temporary:
...
@@ -57,17 +57,17 @@ temporary:
tar
xf
go1.22.8.src.tar.gz
tar
xf
go1.22.8.src.tar.gz
if
[
"$(HOSTTYPE)"
=
"aarch64"
];
then
\
if
[
"$(HOSTTYPE)"
=
"aarch64"
];
then
\
tar
xf
go-linux-arm64-bootstrap.tbz
;
\
tar
xf
go-linux-arm64-bootstrap.tbz
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(CURDIR)
/go-linux-arm64-bootstrap
GOCACHE
=
/tmp/gocache
GO_TEST_TIMEOUT_SCALE
=
3
./all.bash
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(CURDIR)
/go-linux-arm64-bootstrap
GOCACHE
=
/tmp/gocache
GO_TEST_TIMEOUT_SCALE
=
40
./all.bash
;
\
rm
-rf
$(CURDIR)
/go-linux-arm64-bootstrap
;
\
rm
-rf
$(CURDIR)
/go-linux-arm64-bootstrap
;
\
elif
[
"
$(HOSTTYPE)
"
=
"x86_64"
]
;
then
\
elif
[
"
$(HOSTTYPE)
"
=
"x86_64"
]
;
then
\
tar
xf go-linux-amd64-bootstrap.tbz
;
\
tar
xf go-linux-amd64-bootstrap.tbz
;
\
ln
-s
/lib /lib64
;
\
ln
-s
/lib /lib64
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(CURDIR)
/go-linux-amd64-bootstrap
GOCACHE
=
/tmp/gocache
GO_TEST_TIMEOUT_SCALE
=
3
./all.bash
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(CURDIR)
/go-linux-amd64-bootstrap
GOCACHE
=
/tmp/gocache
GO_TEST_TIMEOUT_SCALE
=
40
./all.bash
;
\
rm
-rf
/lib64
;
\
rm
-rf
/lib64
;
\
rm
-rf
$(CURDIR)
/go-linux-amd64-bootstrap
;
\
rm
-rf
$(CURDIR)
/go-linux-amd64-bootstrap
;
\
else
\
else
\
tar
xf go-linux-arm-bootstrap.tbz
;
\
tar
xf go-linux-arm-bootstrap.tbz
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(CURDIR)
/go-linux-arm-bootstrap
GOCACHE
=
/tmp/gocache
GO_TEST_TIMEOUT_SCALE
=
3
./all.bash
;
\
cd
go/src
&&
GOROOT_BOOTSTRAP
=
$(CURDIR)
/go-linux-arm-bootstrap
GOCACHE
=
/tmp/gocache
GO_TEST_TIMEOUT_SCALE
=
40
./all.bash
;
\
rm
-rf
$(CURDIR)
/go-linux-arm-bootstrap
;
\
rm
-rf
$(CURDIR)
/go-linux-arm-bootstrap
;
\
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment