Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nightly-main/rhel-ubi/9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ LABEL description="Docker Container for the Swift programming language"
RUN yum install -y \
git \
gcc-c++ \
glibc-static \
libcurl-devel \
libedit-devel \
libstdc++-devel \
libstdc++-static \
libuuid-devel \
libxml2-devel \
ncurses-devel \
Expand Down
2 changes: 2 additions & 0 deletions swift-ci/main/amazon-linux/2023/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ RUN yum -y install \
gcc-c++ \
clang \
git \
glibc-static \
libbsd-devel \
libedit-devel \
libicu-devel \
libstdc++-static \
libuuid-devel \
libxml2-devel \
ncurses-devel \
Expand Down
3 changes: 2 additions & 1 deletion swift-ci/main/fedora/39/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ RUN yum install -y \
unzip \
diffutils \
libstdc++-devel \
libstdc++-static
libstdc++-static \
glibc-static

ARG SWIFT_PLATFORM=fedora39
ARG SWIFT_VERSION=5.10.1
Expand Down
6 changes: 5 additions & 1 deletion swift-ci/main/fedora/40/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ RUN yum install -y \
cmake \
zip \
unzip \
diffutils
diffutils \
libstdc++-devel \
libstdc++-static \
glibc-static


COPY swift-ci/dependencies/requirements.txt /dependencies/
RUN pip3 install -r /dependencies/requirements.txt
Expand Down
1 change: 1 addition & 0 deletions swift-ci/main/fedora/41/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RUN yum install -y \
libstdc++-static \
ninja-build \
gnupg \
glibc-static \
binutils-gold

ARG SWIFT_PLATFORM=fedora39
Expand Down
3 changes: 3 additions & 0 deletions swift-ci/main/rhel-ubi/8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@ RUN yum install -y \
gcc-c++ \
clang \
cmake \
glibc-static \
make \
libcurl-devel \
libedit-devel \
libuuid-devel \
libstdc++-devel \
libstdc++-static \
libxml2-devel \
ncurses-devel \
python3-devel \
Expand Down
3 changes: 3 additions & 0 deletions swift-ci/main/rhel-ubi/9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@ RUN groupadd -g 42 build-user && \
RUN yum install -y \
git \
gcc-c++ \
glibc-static \
cmake \
diffutils \
make \
libcurl-devel \
libedit-devel \
libstdc++-devel \
libstdc++-static \
libuuid-devel \
libxml2-devel \
ncurses-devel \
Expand Down