Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
curry
pakcs
Commits
e1660999
Verified
Commit
e1660999
authored
Jan 30, 2021
by
Bennet Bleßmann
❔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
split run_download_make job
logs where getting too long for gitlab to show full formatted log
parent
0024c529
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
12 deletions
+26
-12
.gitlab-ci.yml
.gitlab-ci.yml
+19
-5
ci/README.md
ci/README.md
+1
-1
ci/make_download.sh
ci/make_download.sh
+6
-6
No files found.
.gitlab-ci.yml
View file @
e1660999
...
...
@@ -113,20 +113,34 @@ run_make:
-
src/pakcsversion.pl
-
src/prologbasics.pl
# only run for the nightly download test run
run_download_make
:
# template for test_download_src and test_download_amd64_linux
.test_download
:
stage
:
test
tags
:
-
docker2
rules
:
# only run for the nightly download test run
-
if
:
'
$TEST_DOWNLOAD
==
"yes"'
variables
:
# may differ from default version above if download and current branch don't use the same version
CURRY_CHECK_VERSION
:
"
2.0.0"
timeout
:
3h
timeout
:
2h
before_script
:
-
source ci/make_download.sh
script
:
-
build_download_pakcs "${DOWNLOAD_VERSION}" tar_version
# instance of .test_download to test src tar
test_download_src
:
extends
:
.test_download
script
:
-
build_download_pakcs "${DOWNLOAD_VERSION}" src
# instance of .test_download to test amd64-Linux tar
test_download_amd64_linux
:
extends
:
.test_download
script
:
-
ci/make
_download
.sh
-
build
_download
_pakcs "${DOWNLOAD_VERSION}" amd64-Linux
# check that the tag version matches pakcs version
# this failing indicates an incorrect tag version or
...
...
ci/README.md
View file @
e1660999
...
...
@@ -187,7 +187,7 @@ make | run_make
| |
| +-------------+---------+------------+------------+
| | | | | |
test | | | | run_test check_version
run_download_make
test | | | | run_test check_version
test_download_src test_download_amd64_linux
| | | |
| | | +----------+-------------------+
| | v v v v
...
...
ci/make_download.sh
View file @
e1660999
...
...
@@ -23,6 +23,10 @@ gen_currycheck() {
}
build_download_pakcs
()
{
mkdir
-p
download
pushd
download
VERSION
=
$1
# version number
DLVERSION
=
$2
# download version (src, amd64-Linux)
...
...
@@ -57,13 +61,9 @@ build_download_pakcs() {
end_section
"test_
${
PAKCSVERSION
}
_
${
DLVERSION
}
"
popd
popd
# pop "${PAKCSVERSION}"
popd
# pop download
}
mkdir
-p
download
pushd
download
build_download_pakcs
"
${
DOWNLOAD_VERSION
}
"
src
build_download_pakcs
"
${
DOWNLOAD_VERSION
}
"
amd64-Linux
popd
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