Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bumps swift version to make swiftNIO build possible #12990

Merged
merged 2 commits into from
Feb 4, 2025
Merged
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
8 changes: 4 additions & 4 deletions infra/base-images/base-builder/install_swift.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ apt-get update && apt install -y $SWIFT_PACKAGES && \
apt install -y $SWIFT_SYMBOLIZER_PACKAGES --no-install-recommends


wget -q https://download.swift.org/swift-5.8.1-release/ubuntu2004/swift-5.8.1-RELEASE/swift-5.8.1-RELEASE-ubuntu20.04.tar.gz
tar xzf swift-5.8.1-RELEASE-ubuntu20.04.tar.gz
cp -r swift-5.8.1-RELEASE-ubuntu20.04/usr/* /usr/
rm -rf swift-5.8.1-RELEASE-ubuntu20.04.tar.gz swift-5.8.1-RELEASE-ubuntu20.04/
wget -q https://download.swift.org/swift-5.10.1-release/ubuntu2004/swift-5.10.1-RELEASE/swift-5.10.1-RELEASE-ubuntu20.04.tar.gz
tar xzf swift-5.10.1-RELEASE-ubuntu20.04.tar.gz
cp -r swift-5.10.1-RELEASE-ubuntu20.04/usr/* /usr/
rm -rf swift-5.10.1-RELEASE-ubuntu20.04.tar.gz swift-5.10.1-RELEASE-ubuntu20.04/
# TODO: Move to a seperate work dir
git clone https://github.com/llvm/llvm-project.git
cd llvm-project
Expand Down
Loading