IAP GITLAB
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
corsika-data
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
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Air Shower Physics
corsika-data
Commits
4d1785e7
Commit
4d1785e7
authored
4 years ago
by
ralfulrich
Browse files
Options
Downloads
Patches
Plain Diff
run on CI
parent
05cb0ad2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#2683
passed
4 years ago
Stage: testing
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+52
-0
52 additions, 0 deletions
.gitlab-ci.yml
with
52 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
52
−
0
View file @
4d1785e7
variables
:
GIT_STRATEGY
:
fetch
# clone: fresh clone, fetch: update
GIT_SSL_NO_VERIFY
:
"
1"
GIT_DEPTH
:
"
1"
# to re-use clones also in different forks
GIT_CLONE_PATH
:
$CI_BUILDS_DIR/$CI_CONCURRENT_ID/$CI_PROJECT_NAME
## Runtime options for sanitizers
# (detect_leaks=0 because leak detection doesn't work in CI, but you can
# try to test with leak detection locally by using detect_leaks=1)
UBSAN_OPTIONS
:
"
print_stacktrace=1"
LSAN_OPTIONS
:
"
log_threads=1"
ASAN_OPTIONS
:
"
detect_leaks=0:detect_stack_use_after_return=1"
#
# multi-step pipeline for each commit
#
# Mote: "Draft:" merge request, non-Draft merge requests and "Ready for Code Review" MR are all
# handled explicitly
#
stages
:
-
testing
####### TESTING ##############
##########################################################
# the generic config template job
# job/stage to just prepare cmake
.testing
:
stage
:
testing
tags
:
-
corsika
script
:
-
mkdir -p build
-
cd build
-
cmake ..
-
cmake --build . -- -j4
-
set -o pipefail
-
ctest
# config for gcc
testing-u-18_04
:
extends
:
.testing
image
:
corsika/devel:u-18.04
# config for clang
config-clang-8
:
extends
:
.testing
image
:
corsika/devel:clang-8
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