Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
C++ project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ASTRON Templates
C++ project
Merge requests
!1
CWG-10
Skeleton C++.
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
CWG-10
Skeleton C++.
CWG-10-skeleton-for-C++
into
main
Overview
45
Commits
3
Pipelines
11
Changes
24
Merged
CWG-10 Skeleton C++.
Klaas Kliffen
requested to merge
CWG-10-skeleton-for-C++
into
main
Aug 17, 2022
Overview
34
Commits
3
Pipelines
11
Changes
24
Initial C++ skeleton project.
Edited
Aug 17, 2022
by
Klaas Kliffen
0
0
Merge request reports
Compare
main
version 9
bcf26d20
Oct 4, 2022
version 8
abb93e9b
Oct 4, 2022
version 7
f9209a52
Oct 4, 2022
version 6
83aec6f3
Oct 4, 2022
version 5
578f777a
Sep 14, 2022
version 4
2aa2ebd4
Sep 14, 2022
version 3
c6bcd4e5
Sep 14, 2022
version 2
4eeb21a8
Sep 9, 2022
version 1
31325a08
Aug 17, 2022
main (base)
and
latest version
latest version
bdb6e1d5
3 commits,
Oct 5, 2022
version 9
bcf26d20
3 commits,
Oct 4, 2022
version 8
abb93e9b
3 commits,
Oct 4, 2022
version 7
f9209a52
3 commits,
Oct 4, 2022
version 6
83aec6f3
3 commits,
Oct 4, 2022
version 5
578f777a
2 commits,
Sep 14, 2022
version 4
2aa2ebd4
1 commit,
Sep 14, 2022
version 3
c6bcd4e5
2 commits,
Sep 14, 2022
version 2
4eeb21a8
1 commit,
Sep 9, 2022
version 1
31325a08
1 commit,
Aug 17, 2022
24 files
+
3294
−
77
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
ci/ubuntu_22_04-base
0 → 100644
+
23
−
0
View file @ bdb6e1d5
Edit in single-file editor
Open in Web IDE
FROM ubuntu:22.04
# This Docker image builds the dependencies for the application.
# It lives on the head of its dependencies.
# Install all build-time dependencies
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
apt-get install -y \
build-essential \
clang-format \
clang-tidy \
cmake \
cmake-format \
doxygen \
gcovr \
git \
graphviz \
libboost-test-dev \
ninja-build \
python3-breathe \
&& \
rm -rf /var/lib/apt/lists/*
Loading