Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
kww
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
kww
Merge requests
!4
CI + native Debian
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CI + native Debian
ci
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Wuttke, Joachim
requested to merge
ci
into
master
3 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
48917a2e
1 commit,
3 years ago
1 file
+
44
−
21
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
44
−
21
Options
stages
:
-
build
native_Debian_clang
:
tags
:
-
Debian
stage
:
build
before_script
:
&debian_clang
-
export CC=clang; export CXX=clang++
-
cmake --version
-
clang --version
script
:
-
mkdir build
-
cd build
-
cmake -DWERROR=ON ..
-
make
-
ctest --output-on-failure
# - cpack .
artifacts
:
paths
:
-
build/*zip
expire_in
:
10 days
mac
:
tags
:
-
MacOS
@@ -16,6 +37,29 @@ mac:
-
build/*zip
expire_in
:
10 days
windows
:
tags
:
-
Windows
stage
:
build
script
:
-
New-Item -ItemType "directory" -Confirm:$false -Force:$true -Name "build"
-
cd build
# We want to compile with Mingw-w64. Somehow this is accomplished by Ninja.
-
cmake -G "Ninja" -DLIB_MAN=OFF -DCMAKE_INSTALL_PREFIX=C:\opt\x64 -B. ..
-
cmake --build .
# --config Release
-
Get-Location
-
dir
-
ctest --output-on-failure
# -C Release
-
cmake --install .
artifacts
:
paths
:
-
lib/kww.h
-
build/lib/libkww.dll
-
build/demo/runkww.exe
expire_in
:
10 days
## dockerized:
debS_clang
:
tags
:
&unix
-
Linux
@@ -142,24 +186,3 @@ centos7_gcc:
-
ln -s /usr/bin/cpack3 /usr/bin/cpack
stage
:
build
script
:
*scr
windows
:
tags
:
-
Windows
stage
:
build
script
:
-
New-Item -ItemType "directory" -Confirm:$false -Force:$true -Name "build"
-
cd build
# We want to compile with Mingw-w64. Somehow this is accomplished by Ninja.
-
cmake -G "Ninja" -DLIB_MAN=OFF -DCMAKE_INSTALL_PREFIX=C:\opt\x64 -B. ..
-
cmake --build .
# --config Release
-
Get-Location
-
dir
-
ctest --output-on-failure
# -C Release
-
cmake --install .
artifacts
:
paths
:
-
lib/kww.h
-
build/lib/libkww.dll
-
build/demo/runkww.exe
expire_in
:
10 days
Loading