Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
elpa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
elpa
elpa
Commits
1d552f4a
Commit
1d552f4a
authored
Nov 17, 2017
by
Andreas Marek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gitlab CI: Remove some tests for the time being
parent
9a05b9c3
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2812 additions
and
25712 deletions
+2812
-25712
.gitlab-ci.yml
.gitlab-ci.yml
+2759
-25660
generate_gitlab_ci_tests.py
generate_gitlab_ci_tests.py
+53
-52
No files found.
.gitlab-ci.yml
View file @
1d552f4a
This diff is collapsed.
Click to expand it.
generate_gitlab_ci_tests.py
View file @
1d552f4a
...
...
@@ -212,55 +212,55 @@ print(" - chmod u+w -R .")
print
(
"
\n\n
"
)
#define the total coverage phase
print
(
"# print coverage results"
)
print
(
"total_coverage:"
)
print
(
" only:"
)
print
(
" - /.*master.*/"
)
print
(
" stage: coverage"
)
print
(
" tags:"
)
print
(
" - coverage"
)
print
(
" script:"
)
print
(
" - echo
\"
Generating coverage report
\"
"
)
print
(
" - ./ci_coverage_summary"
)
print
(
" artifacts:"
)
print
(
" paths:"
)
print
(
" - public"
)
print
(
"
\n\n
"
)
print
(
"pages:"
)
print
(
" stage: deploy"
)
print
(
" tags:"
)
print
(
" - coverage"
)
print
(
" script:"
)
print
(
" - echo
\"
Publishing pages
\"
"
)
print
(
" artifacts:"
)
print
(
" paths:"
)
print
(
" - public"
)
print
(
" only:"
)
print
(
" - master"
)
print
(
"
\n\n
"
)
print
(
"static-build:"
)
print
(
" tags:"
)
print
(
" - avx"
)
print
(
" script:"
)
print
(
" - ./configure --enable-option-checking=fatal CFLAGS=
\"
-O3 -mavx
\"
FCFLAGS=
\"
-O3 -axAVX
\"
SCALAPACK_LDFLAGS=
\"
$MKL_INTEL_SCALAPACK_LDFLAGS_NO_MPI_NO_OMP
\"
SCALAPACK_FCFLAGS=
\"
$MKL_INTEL_SCALAPACK_FCFLAGS_NO_MPI_NO_OMP
\"
--with-mpi=no FC=ifort --enable-shared=no --enable-static=yes --disable-avx2 || { cat config.log; exit 1; }"
)
print
(
" - make -j 8"
)
print
(
" - export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH"
)
print
(
" - make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }"
)
print
(
" - grep -i
\"
Expected %stop
\"
test-suite.log && exit 1 || true ;"
)
print
(
"
\n\n
"
)
print
(
"# test distcheck"
)
print
(
"distcheck:"
)
print
(
" tags:"
)
print
(
" - buildtest"
)
print
(
" script:"
)
print
(
" - ./configure --enable-option-checking=fatal --with-mpi=no --disable-sse-assembly --disable-sse --disable-avx --disable-avx2 || { cat config.log; exit 1; }"
)
print
(
" # stupid 'make distcheck' leaves behind write-protected files that the stupid gitlab runner cannot remove"
)
print
(
" - make distcheck DISTCHECK_CONFIGURE_FLAGS=
\"
--with-mpi=no --disable-sse-assembly --disable-sse --disable-avx --disable-avx2
\"
TASKS=2 TEST_FLAGS=
\"
150 50 16
\"
|| { chmod u+rwX -R . ; exit 1 ; }"
)
print
(
"
\n\n
"
)
#
#
define the total coverage phase
#
print("# print coverage results")
#
print("total_coverage:")
#
print(" only:")
#
print(" - /.*master.*/")
#
print(" stage: coverage")
#
print(" tags:")
#
print(" - coverage")
#
print(" script:")
#
print(" - echo \"Generating coverage report\"")
#
print(" - ./ci_coverage_summary")
#
print(" artifacts:")
#
print(" paths:")
#
print(" - public")
#
print("\n\n")
#
#
print("pages:")
#
print(" stage: deploy")
#
print(" tags:")
#
print(" - coverage")
#
print(" script:")
#
print(" - echo \"Publishing pages\"")
#
print(" artifacts:")
#
print(" paths:")
#
print(" - public")
#
print(" only:")
#
print(" - master")
#
print("\n\n")
#
#
print("static-build:")
#
print(" tags:")
#
print(" - avx")
#
print(" script:")
#
print(" - ./configure --enable-option-checking=fatal CFLAGS=\"-O3 -mavx\" FCFLAGS=\"-O3 -axAVX\" SCALAPACK_LDFLAGS=\"$MKL_INTEL_SCALAPACK_LDFLAGS_NO_MPI_NO_OMP\" SCALAPACK_FCFLAGS=\"$MKL_INTEL_SCALAPACK_FCFLAGS_NO_MPI_NO_OMP\" --with-mpi=no FC=ifort --enable-shared=no --enable-static=yes --disable-avx2 || { cat config.log; exit 1; }")
#
print(" - make -j 8")
#
print(" - export LD_LIBRARY_PATH=$MKL_HOME/lib/intel64:$LD_LIBRARY_PATH")
#
print(" - make check TASKS=2 TEST_FLAGS='150 50 16' || { cat test-suite.log; exit 1; }")
#
print(" - grep -i \"Expected %stop\" test-suite.log && exit 1 || true ;")
#
print("\n\n")
#
#
print("# test distcheck")
#
print("distcheck:")
#
print(" tags:")
#
print(" - buildtest")
#
print(" script:")
#
print(" - ./configure --enable-option-checking=fatal --with-mpi=no --disable-sse-assembly --disable-sse --disable-avx --disable-avx2 || { cat config.log; exit 1; }")
#
print(" # stupid 'make distcheck' leaves behind write-protected files that the stupid gitlab runner cannot remove")
#
print(" - make distcheck DISTCHECK_CONFIGURE_FLAGS=\"--with-mpi=no --disable-sse-assembly --disable-sse --disable-avx --disable-avx2\" TASKS=2 TEST_FLAGS=\"150 50 16\" || { chmod u+rwX -R . ; exit 1 ; }")
#
print("\n\n")
# construct the builds of the "test_projects"
...
...
@@ -366,12 +366,13 @@ coverage = {
"no-coverage"
:
"no-coverage"
,
}
#disable avx at the moment
#disable avx512 at the moment
#disable knl at the moment
instruction_set
=
{
"sse"
:
" --enable-sse --enable-sse-assembly"
,
"avx"
:
" --enable-avx"
,
"avx2"
:
" --enable-avx2"
,
"avx512"
:
" --enable-avx512"
,
"knl"
:
" --enable-avx512"
,
"power8"
:
" --disable-sse --disable-sse-assembly --disable-avx --disable-avx2 --disable-mpi-module --with-GPU-compute-capability=sm_60 "
,
}
...
...
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