Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
DP3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ResearchAndDevelopment
DP3
Merge requests
!1389
Switch to C++-20
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Switch to C++-20
use-c++-20
into
master
Overview
4
Commits
6
Pipelines
7
Changes
4
All threads resolved!
Hide all comments
Merged
Andre Offringa
requested to merge
use-c++-20
into
master
2 months ago
Overview
4
Commits
6
Pipelines
7
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
version 2
version 5
cfcce10b
1 month ago
version 4
031c0ac4
2 months ago
version 3
05464a82
2 months ago
version 2
b00bd7cb
2 months ago
version 1
a55f293a
2 months ago
master (base)
and
version 3
latest version
932895de
6 commits,
1 month ago
version 5
cfcce10b
5 commits,
1 month ago
version 4
031c0ac4
4 commits,
2 months ago
version 3
05464a82
3 commits,
2 months ago
version 2
b00bd7cb
2 commits,
2 months ago
version 1
a55f293a
1 commit,
2 months ago
Show latest version
1 file
+
8
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
docker/ubuntu_22_04_base
+
8
−
3
Options
@@ -59,16 +59,21 @@ RUN mkdir -p /usr/share/casacore/data && \
# The casacore version in Ubuntu is too old to support C++20, so install a more recent one.
RUN mkdir /external && \
cd /external && \
git clone https://github.com/casacore/casacore.git && \
git clone
--depth 1 --branch v3.6.0
https://github.com/casacore/casacore.git && \
cd /external/casacore && \
git checkout v3.6.0 && \
mkdir build && \
cd build && \
cmake .. -DBUILD_PYTHON=O
FF
-DBUILD_TESTING=OFF -DDATA_DIR=/usr/share/casacore/data && \
cmake .. -DBUILD_PYTHON
3
=O
N
-DBUILD_TESTING=OFF -DDATA_DIR=/usr/share/casacore/data && \
make -j`nproc` && \
make install -j`nproc` && \
cd /external && \
rm -rf /external/casacore
RUN cd /external && \
git clone --depth 1 https://github.com/casacore/python-casacore.git && \
cd /external/python-casacore && \
pip install . && \
cd /external && \
rm -rf /external/python-casacore
# Build aoflagger3
RUN mkdir /aoflagger && cd /aoflagger \
&& git clone https://gitlab.com/aroffringa/aoflagger.git src \
Loading