Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-codegen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Christian Heinigk
dune-codegen
Commits
78681844
Commit
78681844
authored
7 years ago
by
Jorrit Fahlke
Browse files
Options
Downloads
Patches
Plain Diff
[CI] Restrict the number of tests compiled and run to a very small set.
parent
d146dc8c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+3
-1
3 additions, 1 deletion
.gitlab-ci.yml
bin/dune-ctest
+0
-5
0 additions, 5 deletions
bin/dune-ctest
bin/duneci-perftool-small-test
+23
-0
23 additions, 0 deletions
bin/duneci-perftool-small-test
with
26 additions
and
6 deletions
.gitlab-ci.yml
+
3
−
1
View file @
78681844
...
@@ -3,6 +3,8 @@ variables:
...
@@ -3,6 +3,8 @@ variables:
# work around https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/2148
# work around https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/2148
# value should be "recursive" without workaround
# value should be "recursive" without workaround
GIT_SUBMODULE_STRATEGY
:
none
GIT_SUBMODULE_STRATEGY
:
none
DUNECI_BUILD_TESTS
:
poisson_2d_cg_quadrilateral poisson_2d_cg_triangle poisson_2d_dg_quadrilateral poisson_2d_dg_triangle
DUNECI_RUN_TESTS
:
-R ^poisson_2d
before_script
:
before_script
:
# work around https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/2148
# work around https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/2148
...
@@ -17,4 +19,4 @@ before_script:
...
@@ -17,4 +19,4 @@ before_script:
debian:9--gcc
:
debian:9--gcc
:
image
:
registry.jorrit.de/perftools-ci:9
image
:
registry.jorrit.de/perftools-ci:9
script
:
script
:
duneci-
standard
-test
bin/
duneci-
perftool-small
-test
This diff is collapsed.
Click to expand it.
bin/dune-ctest
deleted
100755 → 0
+
0
−
5
View file @
d146dc8c
#!/bin/sh
echo
>
&2
"Skipping tests for now"
true
This diff is collapsed.
Click to expand it.
bin/duneci-perftool-small-test
0 → 100644
+
23
−
0
View file @
78681844
#! /bin/bash
set
-e
set
-u
:
${
DUNECI_OPTS
:
=/duneci/opts.gcc
}
set
--
--opts
=
"
${
DUNECI_OPTS
}
"
"
${
@
}
"
DUNECONTROL
=
dunecontrol
if
[[
-x
bin/dunecontrol
]]
;
then
DUNECONTROL
=
bin/dunecontrol
fi
DUNE_CTEST
=
duneci-ctest
if
[[
-x
bin/dune-ctest
]]
;
then
DUNE_CTEST
=
../bin/dune-ctest
fi
set
-x
${
DUNECONTROL
}
--current
"
${
@
}
"
all
${
DUNECONTROL
}
--current
make
${
DUNECI_BUILD_TESTS
:-
build_tests
}
cd
build-cmake
${
DUNE_CTEST
}
${
DUNECI_RUN_TESTS
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment