Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EveryBeam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mattia Mancini
EveryBeam
Commits
2842ff74
Commit
2842ff74
authored
3 years ago
by
André Offringa
Browse files
Options
Downloads
Patches
Plain Diff
Update aocommon and add Dockerfile for gcc11 test
parent
4a33f3b4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
docker/Dockerfile-Ubuntu18-gcc-11
+41
-0
41 additions, 0 deletions
docker/Dockerfile-Ubuntu18-gcc-11
external/aocommon
+1
-1
1 addition, 1 deletion
external/aocommon
with
42 additions
and
1 deletion
docker/Dockerfile-Ubuntu18-gcc-11
0 → 100644
+
41
−
0
View file @
2842ff74
# Copyright (C) 2020 ASTRON (Netherlands Institute for Radio Astronomy)
# SPDX-License-Identifier: GPL-3.0-or-later
# This is a Dockerfile specifically to test compilation using
# gcc 11, which is as of writing (Aug 2021) not standard yet, but is more
# strict than gcc 10.
FROM ubuntu:18.04
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && \
apt-get install -y \
build-essential \
casacore-data casacore-dev \
cmake \
libblas-dev liblapack-dev \
libpython3-dev \
libboost-filesystem-dev \
libboost-system-dev \
libboost-test-dev \
libcfitsio-dev \
libfftw3-dev \
libgsl-dev \
libhdf5-serial-dev \
pkg-config \
python3 \
python3-distutils \
wget \
software-properties-common && \
echo -ne "\n \n"| add-apt-repository ppa:ubuntu-toolchain-r/test && \
apt-get update -qq && \
apt-get install -y gcc-11 g++-11 gfortran-11
ADD . /src
WORKDIR /src
RUN \
mkdir /build && \
cd /build && \
CC=/usr/bin/gcc-11 CXX=/usr/bin/g++-11 cmake ../src && \
make -j`nproc` && \
make install
This diff is collapsed.
Click to expand it.
aocommon
@
aea90ad3
Compare
08814052
...
aea90ad3
Subproject commit
088140529903105dba98202be8dc6c72d28b1b8e
Subproject commit
aea90ad3b9e0e67e618cf02cc2d38a1275317fbf
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