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

Add new Linux platforms: Ubuntu 24.04, Debian 12, Fedora 39 #173

Merged
merged 16 commits into from
Nov 13, 2024

Conversation

cmcgee1024
Copy link
Member

Add support for these new platforms to swiftly, the autodetection, the tests, and docker support.

Remove the swiftly installer portion of the code.

Add support for these new platforms to swiftly, the autodetection,
the tests, and docker support.

Remove the swiftly installer portion of the code.
@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

case "5":
return PlatformDefinition.amazonlinux2
default:
guard let choiceNum = Int(choice) else {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think right now if you were to run this and enter 0 for cancel, it would explode, it would go on to run
return self.linuxPlatforms[choiceNum - 1] and you'd get an index exception

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that this guard will guard against non-integer input, such as "foo", or "bar". The guard below should check for 0, or something larger than the linuxPlatforms count and cancel the installation. The final array subscript at the return statement should be safely in range.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh I see, the guard clause tripped me up, Makes sense

}
return self.manualSelectPlatform(platformPretty)
}
let releaseInfo = try String(contentsOfFile: releaseFile, encoding: .utf8)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we still wrap this in an equivalent try/catch which calls to self.manualSelectPlatform if the info can't be read correctly?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that we want to heavily emphasize the platform auto-detection because it will make the user's life a ton easier. If there's some kind of problem reading the /etc/os-release or /usr/lib/os-release to the point where we can't even read the bytes into a String with the expected UTF-8 encoding the user should probably be made aware of this corruption.

From the linux manual it says that "[a]ll strings should be in UTF-8 encoding, and non-printable characters should not be used."

https://man7.org/linux/man-pages/man5/os-release.5.html

for info in releaseInfo.split(separator: "\n").map(String.init) {
if info.hasPrefix("ID=") {
id = String(info.dropFirst("ID=".count)).replacingOccurrences(of: "\"", with: "")
} else if info.hasPrefix("ID_LIKE=") {
idlike = String(info.dropFirst("ID_LIKE=".count)).replacingOccurrences(of: "\"", with: "")
} else if info.hasPrefix("VERSION_ID=") {
versionID = String(info.dropFirst("VERSION_ID=".count)).replacingOccurrences(of: "\"", with: "")
} else if info.hasPrefix("UBUNTU_CODENAME=") {
ubuntuCodeName = String(info.dropFirst("UBUNTU_CODENAME=".count)).replacingOccurrences(of: "\"", with: "")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we still need to account for stings which start with "UBUNTU_CODENAME" here?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We're reading this file line-by-line and we don't have any need for the ubuntu codename anymore. I think it's safe to just skip ubuntu codename lines.

}

return PlatformDefinition(name: "ubi9", nameFull: "ubi9", namePretty: "RHEL 9")
return PlatformDefinition.rhel9
} else if let pd = [PlatformDefinition.ubuntu1804, .ubuntu2004, .ubuntu2204, .ubuntu2310, .ubuntu2404, .debian12, .fedora39].first(where: { $0.name == id + versionID }) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we're gonna maintain a static data structure here, might as well make it a dictionary so we get better performance on look ups? Any thoughts? It's not really a big deal but since we're going to maintain the list of linux versions here might be worth it

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In terms of performance I'm not too worried about it since this is likely run very infrequently, just at install time, and only once. This is a one-off list of the linux platforms where we can match directly with the name and version id.

In the future, I hope that we add an API to swift.org so that this can become entirely dumb, making it much easier to just add new linux platforms by adding new entries to the swift.org API, and not have to update the swiftly code each time.

@@ -125,6 +137,26 @@ public struct Linux: Platform {
"tzdata",
"zlib1g-dev",
]
case "ubuntu2404":

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we're missing 2310 from this list

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't find a list of packages for ubuntu 23.10 from the Dockerfiles. If someone knows where the docker file is, I can add it here.

This is where I usually look for them: https://github.com/swiftlang/swift-docker/tree/main/6.0/ubuntu

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I manually pieced together the list by looking at the differences between ubuntu 22.04, and 24.04. Tested it out in docker and it looks to be working fine. There's only the swift 5.10.1 release available for that one though, so I wonder how useful and used this version of ubuntu will be.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

23.10 only exists under https://github.com/swiftlang/swift-docker/blob/main/5.10/ubuntu/23.10/Dockerfile; but 23.10 reached end of life on July 2024.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have removed 23.10 from the list because we can't bring up infrastructure for a platform that is EOL.

// THEN: we get at least 1 release
XCTAssertTrue(1 <= releases.count)

if newPlatforms.contains(platform) { continue } // Newer distros don't have main snapshots yet

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How will we eventually know to remove this for proper testing? Seems like the kind of thing I'd forget 😄

Copy link
Member Author

@cmcgee1024 cmcgee1024 Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Integration tests that are in the middle of the test pyramid like this are tricky, but necessary.

The trouble with mocking the responses is that we won't know if the API might change in some way that breaks swiftly. I think that we want to catch obvious integration problems between the swift.org API and what we can potentially request from it. If that means that we don't fully cover all possibilities with all supported platforms I think that's ok. This was a good test when I started working on the patch to verify that the platform definition strings were correct from the standpoint of the swift.org API.

return v
}

let name = try? getEnv("SWIFTLY_PLATFORM_NAME")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

were these variables just unused?

Copy link
Member Author

@cmcgee1024 cmcgee1024 Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These variables have been slowly been superseded by platform auto detection, first in the production part of swiftly on macOS, then gradually the tests. This is removing the last remnant of them because I didn't want to miss test coverage of the auto-detection on the different CI platforms since I had modified some of that code here.

@shahmishal can we get the CI to add the new platforms? I think that I added all of the docker files, and docker compose, but the CI didn't pick up Debian 12, Fedora 39, or the two new Ubuntu (24.04, 23.10). I still see only the usual RHEL9, Ubuntu 22.04, etc.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Switching over to GH actions has yielded these new platforms for testing. See the "checks" section of this PR.


services:

test-setup:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

are there Dockerfiles for this?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe that the docker files for these are covered by the images from docker hub, like swift:5.10-noble, and also the test.dockerfile and install-test.dockerfile which are ubuntu-based with some variables for the ubuntu version. These Dockerfiles should be invoked by the CI, but I don't know the magic hooks to make the CI try these new platforms now that we have the docker and docker compose files. Maybe @shahmishal can hook up CI for them?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this latest version of the PR none of these are needed anymore since we switched to GH actions. The docker setup is managed by the official docker containers by the reusable workflow in swiftlang/github-workflow.

@@ -1,716 +0,0 @@
#!/usr/bin/env bash

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bit behind I think, why did we remove all of these scripts + their tests?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This bash script was the original curl | bash installation system for swiftly in the previous version. We've slowly migrated it to the new swiftly init mechanism for a few reasons, such as much better options handling, and a generally safer mechanism.

I'm removing it here because it's vestigial at this point, and confuses new contributors who still see this as the installer. Plus, it would need to have support for these new platforms.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But it was also responsible for pulling the latest release binary of swiftly right? So is the implication that going forward we should expect users to build from source? Or should we host release binaries on the repo? Just wondering if the readme/release process needs to be changed here

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a few possibilities:

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be done in a separate PR to discuss is rather than bundling it in as part of this PR

@cmcgee1024 cmcgee1024 changed the title Add new Linux platforms: Ubuntu 2404,2310, Debian 12, Fedora 39 Add new Linux platforms: Ubuntu 24,04, 23.10, Debian 12, Fedora 39 Oct 24, 2024
@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

@cmcgee1024
Copy link
Member Author

The macOS tests are all passing:

Test Suite 'All tests' passed at 2024-10-24 12:15:04.490.
	 Executed 66 tests, with 0 failures (0 unexpected) in 72.013 (72.022) seconds


test-setup:
image: swiftly:debian12-test
build:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this specify the newly added Dockerfile?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we've moved to the new GitHub Actions infrastructure I've removed the old docker compose files and Dockerfiles from here.

@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

1 similar comment
@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

@cmcgee1024 cmcgee1024 changed the title Add new Linux platforms: Ubuntu 24,04, 23.10, Debian 12, Fedora 39 Add new Linux platforms: Ubuntu 24.04, 23.10, Debian 12, Fedora 39 Oct 30, 2024
@cmcgee1024 cmcgee1024 changed the title Add new Linux platforms: Ubuntu 24.04, 23.10, Debian 12, Fedora 39 Add new Linux platforms: Ubuntu 24.04, Debian 12, Fedora 39 Nov 1, 2024
@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

@cmcgee1024
Copy link
Member Author

The macOS tests are all passing:

Test Suite 'All tests' passed at 2024-11-01 13:13:04.370.
	 Executed 66 tests, with 0 failures (0 unexpected) in 76.277 (76.285) seconds

@cmcgee1024
Copy link
Member Author

@swift-ci test macOS

@cmcgee1024
Copy link
Member Author

We've moved to the new GitHub Actions infrastructure, so there's been a few changes here.

  • Adjusted the .github/workflows/pull_request.yaml to add the three new Linux distributions so that the checks are run
  • Adjusted some test cases to work across all of the new platforms given that some of them don't have 5.9 toolchains
  • Skipped tests that rely on snapshots on platforms that don't currently have snapshots

@cmcgee1024
Copy link
Member Author

The macOS tests are passing:

Test Suite 'All tests' passed at 2024-11-08 13:27:54.065.
	 Executed 66 tests, with 0 failures (0 unexpected) in 77.773 (77.781) seconds

"revision" : "3b13e439a341bbbfe0f710c7d1be37221745ef1a",
"version" : "0.6.1"
"revision" : "5b130e04cc939373c4713b91704b0c47ceb36170",
"version" : "0.7.1"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There was a compile error in the TSC code only when compiling in these new Linux platforms, likely due to a header change in libc. The new version fixes this problem.

Copy link

@justice-adams-apple justice-adams-apple left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@@ -44,7 +44,6 @@ Target: x86_64-unknown-linux-gnu
## Platform support

- Linux-based platforms listed on https://swift.org/download
- CentOS 7 will not be supported due to some dependencies of swiftly not supporting it, however.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it worth noting here that 23.10 isn't supported for 5.10 releases? technically that is listed on swift.org/download? Just thinking out loud, it doesn't matter much

@cmcgee1024 cmcgee1024 merged commit 9748352 into swiftlang:main Nov 13, 2024
20 of 21 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants