aboutsummaryrefslogtreecommitdiffstats
path: root/.ci/docker
diff options
context:
space:
mode:
Diffstat (limited to '.ci/docker')
-rw-r--r--.ci/docker/uhd-builder-fedora32.Dockerfile35
-rw-r--r--.ci/docker/uhd-builder-fedora33.Dockerfile35
-rw-r--r--.ci/docker/uhd-builder-ubuntu1804.Dockerfile38
-rw-r--r--.ci/docker/uhd-builder-ubuntu2004.Dockerfile38
-rw-r--r--.ci/docker/uhd-builder-vs2017-v141-x64.Dockerfile42
-rw-r--r--.ci/docker/uhd-builder-vs2017-v141-x86.Dockerfile41
-rw-r--r--.ci/docker/uhd-builder-vs2019-v142-x64.Dockerfile41
-rw-r--r--.ci/docker/uhd-builder-vs2019-v142-x86.Dockerfile40
8 files changed, 310 insertions, 0 deletions
diff --git a/.ci/docker/uhd-builder-fedora32.Dockerfile b/.ci/docker/uhd-builder-fedora32.Dockerfile
new file mode 100644
index 000000000..8500397a8
--- /dev/null
+++ b/.ci/docker/uhd-builder-fedora32.Dockerfile
@@ -0,0 +1,35 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+FROM fedora:32
+LABEL maintainer="Ettus Research"
+
+RUN dnf install -y \
+ boost-devel \
+ ccache \
+ cmake \
+ doxygen \
+ dpdk \
+ dpdk-devel \
+ dpdk-tools \
+ gcc \
+ gcc-c++ \
+ git \
+ libusb1-devel \
+ make \
+ ncompress \
+ ninja-build \
+ python3-devel \
+ python3-docutils \
+ python3-mako \
+ python3-numpy \
+ python3-pip \
+ python3-requests \
+ redhat-rpm-config \
+ rpm-build \
+ rpm-devel \
+ rsync \
+ tar \
+ xz \
+ && \
+ dnf clean all
diff --git a/.ci/docker/uhd-builder-fedora33.Dockerfile b/.ci/docker/uhd-builder-fedora33.Dockerfile
new file mode 100644
index 000000000..0ae0a64a5
--- /dev/null
+++ b/.ci/docker/uhd-builder-fedora33.Dockerfile
@@ -0,0 +1,35 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+FROM fedora:33
+LABEL maintainer="Ettus Research"
+
+RUN dnf install -y \
+ boost-devel \
+ ccache \
+ cmake \
+ doxygen \
+ dpdk \
+ dpdk-devel \
+ dpdk-tools \
+ gcc \
+ gcc-c++ \
+ git \
+ libusb1-devel \
+ make \
+ ncompress \
+ ninja-build \
+ python3-devel \
+ python3-docutils \
+ python3-mako \
+ python3-numpy \
+ python3-pip \
+ python3-requests \
+ redhat-rpm-config \
+ rpm-build \
+ rpm-devel \
+ rsync \
+ tar \
+ xz \
+ && \
+ dnf clean all
diff --git a/.ci/docker/uhd-builder-ubuntu1804.Dockerfile b/.ci/docker/uhd-builder-ubuntu1804.Dockerfile
new file mode 100644
index 000000000..1afb27473
--- /dev/null
+++ b/.ci/docker/uhd-builder-ubuntu1804.Dockerfile
@@ -0,0 +1,38 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+FROM ubuntu:18.04
+LABEL maintainer="Ettus Research"
+
+# This will make apt-get install without question
+ARG DEBIAN_FRONTEND=noninteractive
+
+RUN apt-get update && \
+ apt-get -y upgrade && \
+ apt-get -y install -q \
+ build-essential \
+ ccache \
+ curl \
+ git \
+ sudo \
+ # Install UHD dependencies
+ abi-dumper \
+ cmake \
+ doxygen \
+ dpdk \
+ libboost-all-dev \
+ libdpdk-dev \
+ libgps-dev \
+ libgps-dev \
+ libudev-dev \
+ libusb-1.0-0-dev \
+ ncompress \
+ ninja-build \
+ python3-dev \
+ python3-docutils \
+ python3-mako \
+ python3-numpy \
+ python3-pip \
+ python3-requests \
+ && \
+ rm -rf /var/lib/apt/lists/*
diff --git a/.ci/docker/uhd-builder-ubuntu2004.Dockerfile b/.ci/docker/uhd-builder-ubuntu2004.Dockerfile
new file mode 100644
index 000000000..3b7d1ab41
--- /dev/null
+++ b/.ci/docker/uhd-builder-ubuntu2004.Dockerfile
@@ -0,0 +1,38 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+FROM ubuntu:20.04
+LABEL maintainer="Ettus Research"
+
+# This will make apt-get install without question
+ARG DEBIAN_FRONTEND=noninteractive
+
+RUN apt-get update && \
+ apt-get -y upgrade && \
+ apt-get -y install -q \
+ build-essential \
+ ccache \
+ curl \
+ git \
+ sudo \
+ # Install UHD dependencies
+ abi-dumper \
+ cmake \
+ doxygen \
+ dpdk \
+ libboost-all-dev \
+ libdpdk-dev \
+ libgps-dev \
+ libgps-dev \
+ libudev-dev \
+ libusb-1.0-0-dev \
+ ncompress \
+ ninja-build \
+ python3-dev \
+ python3-docutils \
+ python3-mako \
+ python3-numpy \
+ python3-pip \
+ python3-requests \
+ && \
+ rm -rf /var/lib/apt/lists/*
diff --git a/.ci/docker/uhd-builder-vs2017-v141-x64.Dockerfile b/.ci/docker/uhd-builder-vs2017-v141-x64.Dockerfile
new file mode 100644
index 000000000..d608ef4c4
--- /dev/null
+++ b/.ci/docker/uhd-builder-vs2017-v141-x64.Dockerfile
@@ -0,0 +1,42 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+# This uses Window Server 2019 since it supports container jobs.
+# This must match the Windows Server version that the Pipelines
+# agent runs on. It's possible to switch out the base image
+# with a Windows 10 image for local builds.
+FROM mcr.microsoft.com/windows/servercore:1809
+LABEL maintainer="Ettus Research"
+
+RUN @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" \
+ -NoProfile -InputFormat None -ExecutionPolicy Bypass \
+ -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; \
+ iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && \
+ SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
+RUN choco install -y cmake.install --installargs 'ADD_CMAKE_TO_PATH=System' --version=3.19.6
+RUN choco install -y doxygen.install --version=1.9.1
+RUN choco install -y git
+RUN choco install -y NSIS --version=3.06.1
+RUN choco install -y vim
+RUN choco install -y python3 --version=3.7.9
+RUN pip install mako requests numpy ruamel.yaml
+
+RUN powershell -NoProfile -ExecutionPolicy Bypass -Command \
+ Invoke-WebRequest "https://aka.ms/vs/15/release/vs_community.exe" \
+ -OutFile "%TEMP%\vs_community.exe" -UseBasicParsing
+RUN "%TEMP%\vs_community.exe" --quiet --wait --norestart --noUpdateInstaller \
+ --add Microsoft.VisualStudio.Workload.NativeDesktop \
+ --add Microsoft.VisualStudio.Component.Windows81SDK \
+ --includeRecommended
+
+RUN setx VCPKG_INSTALL_DIR "c:\\vcpkg" /m
+RUN git clone https://github.com/microsoft/vcpkg %VCPKG_INSTALL_DIR% && \
+ cd %VCPKG_INSTALL_DIR% && \
+ # The vcpkg git commit sets the toolchain dependenices
+ # This commit uses Boost 1.75 and libusb 1.0.24
+ git checkout 3426db05b996481ca31e95fff3734cf23e0f51bc && \
+ bootstrap-vcpkg.bat
+RUN cd %VCPKG_INSTALL_DIR% && vcpkg install --clean-after-build \
+ libusb:x64-windows \
+ boost:x64-windows
+
diff --git a/.ci/docker/uhd-builder-vs2017-v141-x86.Dockerfile b/.ci/docker/uhd-builder-vs2017-v141-x86.Dockerfile
new file mode 100644
index 000000000..f4cb509fe
--- /dev/null
+++ b/.ci/docker/uhd-builder-vs2017-v141-x86.Dockerfile
@@ -0,0 +1,41 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+# This uses Window Server 2019 since it supports container jobs.
+# This must match the Windows Server version that the Pipelines
+# agent runs on. It's possible to switch out the base image
+# with a Windows 10 image for local builds.
+FROM mcr.microsoft.com/windows/servercore:1809
+LABEL maintainer="Ettus Research"
+
+RUN @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" \
+ -NoProfile -InputFormat None -ExecutionPolicy Bypass \
+ -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; \
+ iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && \
+ SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
+RUN choco install -y cmake.install --installargs 'ADD_CMAKE_TO_PATH=System' --version=3.19.6
+RUN choco install -y doxygen.install --version=1.9.1
+RUN choco install -y git
+RUN choco install -y NSIS --version=3.06.1
+RUN choco install -y vim
+RUN choco install -y python3 --version=3.7.9
+RUN pip install mako requests numpy ruamel.yaml
+
+RUN powershell -NoProfile -ExecutionPolicy Bypass -Command \
+ Invoke-WebRequest "https://aka.ms/vs/15/release/vs_community.exe" \
+ -OutFile "%TEMP%\vs_community.exe" -UseBasicParsing
+RUN "%TEMP%\vs_community.exe" --quiet --wait --norestart --noUpdateInstaller \
+ --add Microsoft.VisualStudio.Workload.NativeDesktop \
+ --add Microsoft.VisualStudio.Component.Windows81SDK \
+ --includeRecommended
+
+RUN setx VCPKG_INSTALL_DIR "c:\\vcpkg" /m
+RUN git clone https://github.com/microsoft/vcpkg %VCPKG_INSTALL_DIR% && \
+ cd %VCPKG_INSTALL_DIR% && \
+ # The vcpkg git commit sets the toolchain dependenices
+ # This commit uses Boost 1.75 and libusb 1.0.24
+ git checkout 3426db05b996481ca31e95fff3734cf23e0f51bc && \
+ bootstrap-vcpkg.bat
+RUN cd %VCPKG_INSTALL_DIR% && vcpkg install --clean-after-build \
+ libusb:x86-windows \
+ boost:x86-windows
diff --git a/.ci/docker/uhd-builder-vs2019-v142-x64.Dockerfile b/.ci/docker/uhd-builder-vs2019-v142-x64.Dockerfile
new file mode 100644
index 000000000..eb8aedcf6
--- /dev/null
+++ b/.ci/docker/uhd-builder-vs2019-v142-x64.Dockerfile
@@ -0,0 +1,41 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+# This uses Window Server 2019 since it supports container jobs.
+# This must match the Windows Server version that the Pipelines
+# agent runs on. It's possible to switch out the base image
+# with a Windows 10 image for local builds.
+FROM mcr.microsoft.com/windows/servercore:1809
+LABEL maintainer="Ettus Research"
+
+RUN @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" \
+ -NoProfile -InputFormat None -ExecutionPolicy Bypass \
+ -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; \
+ iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && \
+ SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
+RUN choco install -y cmake.install --installargs 'ADD_CMAKE_TO_PATH=System' --version=3.19.6
+RUN choco install -y doxygen.install --version=1.9.1
+RUN choco install -y git
+RUN choco install -y NSIS --version=3.06.1
+RUN choco install -y vim
+RUN choco install -y python3 --version=3.7.9
+RUN pip install mako requests numpy ruamel.yaml
+
+RUN powershell -NoProfile -ExecutionPolicy Bypass -Command \
+ Invoke-WebRequest "https://aka.ms/vs/16/release/vs_community.exe" \
+ -OutFile "%TEMP%\vs_community.exe" -UseBasicParsing
+RUN "%TEMP%\vs_community.exe" --quiet --wait --norestart --noUpdateInstaller \
+ --add Microsoft.VisualStudio.Workload.NativeDesktop \
+ --includeRecommended
+
+RUN setx VCPKG_INSTALL_DIR "c:\\vcpkg" /m
+RUN git clone https://github.com/microsoft/vcpkg %VCPKG_INSTALL_DIR% && \
+ cd %VCPKG_INSTALL_DIR% && \
+ # The vcpkg git commit sets the toolchain dependenices
+ # This commit uses Boost 1.75 and libusb 1.0.24
+ git checkout 3426db05b996481ca31e95fff3734cf23e0f51bc && \
+ bootstrap-vcpkg.bat
+RUN cd %VCPKG_INSTALL_DIR% && vcpkg install --clean-after-build \
+ libusb:x64-windows \
+ boost:x64-windows
+
diff --git a/.ci/docker/uhd-builder-vs2019-v142-x86.Dockerfile b/.ci/docker/uhd-builder-vs2019-v142-x86.Dockerfile
new file mode 100644
index 000000000..92afa8214
--- /dev/null
+++ b/.ci/docker/uhd-builder-vs2019-v142-x86.Dockerfile
@@ -0,0 +1,40 @@
+# please follow docker best practices
+# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/
+
+# This uses Window Server 2019 since it supports container jobs.
+# This must match the Windows Server version that the Pipelines
+# agent runs on. It's possible to switch out the base image
+# with a Windows 10 image for local builds.
+FROM mcr.microsoft.com/windows/servercore:1809
+LABEL maintainer="Ettus Research"
+
+RUN @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" \
+ -NoProfile -InputFormat None -ExecutionPolicy Bypass \
+ -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; \
+ iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && \
+ SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
+RUN choco install -y cmake.install --installargs 'ADD_CMAKE_TO_PATH=System' --version=3.19.6
+RUN choco install -y doxygen.install --version=1.9.1
+RUN choco install -y git
+RUN choco install -y NSIS --version=3.06.1
+RUN choco install -y vim
+RUN choco install -y python3 --version=3.7.9
+RUN pip install mako requests numpy ruamel.yaml
+
+RUN powershell -NoProfile -ExecutionPolicy Bypass -Command \
+ Invoke-WebRequest "https://aka.ms/vs/16/release/vs_community.exe" \
+ -OutFile "%TEMP%\vs_community.exe" -UseBasicParsing
+RUN "%TEMP%\vs_community.exe" --quiet --wait --norestart --noUpdateInstaller \
+ --add Microsoft.VisualStudio.Workload.NativeDesktop \
+ --includeRecommended
+
+RUN setx VCPKG_INSTALL_DIR "c:\\vcpkg" /m
+RUN git clone https://github.com/microsoft/vcpkg %VCPKG_INSTALL_DIR% && \
+ cd %VCPKG_INSTALL_DIR% && \
+ # The vcpkg git commit sets the toolchain dependenices
+ # This commit uses Boost 1.75 and libusb 1.0.24
+ git checkout 3426db05b996481ca31e95fff3734cf23e0f51bc && \
+ bootstrap-vcpkg.bat
+RUN cd %VCPKG_INSTALL_DIR% && vcpkg install --clean-after-build \
+ libusb:x86-windows \
+ boost:x86-windows