Update SPIManifest
Preconditions: None.
This can be done at any time. It only takes effect once the adopting packages (Server and Builder) update to this version.
Example change: https://github.com/SwiftPackageIndex/SPIManifest/pull/39/files
Update PackageList
Preconditions:
Note: There's little point in merging this in order to be able to add new packages that have their tools-version set to this new version unless the server changes have been deployed. If the server can't "package dump" this tools version the analysis step will fail and the package will not show up in the index. However, it is safe to merge this ahead of time. Packages that have been added will start appearing once the server has been updated.
Example change: https://github.com/SwiftPackageIndex/PackageList/pull/7208/files
Update PackageList-Validator
Preconditions:
- new Swift docker image available (automatically ensured by package CI)
This ensures via the CI build that the validator binary which is built in the PackageList repository can be built successfully with the latest Swift version.
Example change: https://github.com/SwiftPackageIndex/PackageList-Validator/pull/61/files
Update spi-images
Preconditions: new Swift docker image available (automatically ensured by package CI)
The images don't need to be tagged, as they are automatically picked up via their .../spi-images:basic-5.8-latest tag.
Example change: https://gitlab.com/finestructure/spi-images/-/merge_requests/19/diffs
Update builder machines
Preconditions: new Xcode version available
Update Builder
Preconditions:
https://gitlab.com/finestructure/swiftpackageindex-builder/-/merge_requests/354
Example change: https://gitlab.com/finestructure/swiftpackageindex-builder/-/merge_requests/253/diffs
Update spi-base
Preconditions: new Swift docker image available (automatically ensured by package CI)
Example change: https://gitlab.com/finestructure/spi-base/-/merge_requests/27/diffs
Update Server
Preconditions:
Example change: https://github.com/SwiftPackageIndex/SwiftPackageIndex-Server/pull/2899/files
Delete old Swift version builds
Preconditions: New server (one that doesn't trigger the Swift version to be deleted) has been deployed
- ⚠️ Delete outdated builds when ready
Example SQL:
delete
from builds
where
swift_version->'major' = '5'
and swift_version->'minor' = '6'
This should be run once the new Server has been deployed. Running it too early will lead to the deleted versions being triggered again. It's harmless but wastes build resources.
Deleting the records too long after deployment will inhibit triggering of the new Swift versions, because the presence of the old records will make the build result set appear to be complete. This is also harmless, as these will then be triggered once the deletion has happened.
Deployment notes
The final tasks before actual rollout should be:
- set
BUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALING
- deploy server (by tagging)
- merge builder
- delete old Swift version builds
The steps should be followed in that order, although deviations are not critical.
Setting the BUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALING does not take effect until the server is redeployed.
Deploying the new server version will start triggering new Swift version builds. If the builder cannot handle them yet (because it's not been updated), they will remain in the queue and will eventually be discarded.
Updating the builder means it will stop processing the deleted Swift version and add support for a new one. So if the builder were updated first, old Swift versions would still be triggered and remain in the queue until discarded.
Neither is problematic but it's best to simply immediately merge (and therefore deploy) the new builder when the new server comes online.
Finally, deleting the old Swift versions is what really starts the reprocessing. Without this step, only new packages or versions will trigger any builds for the new Swift version.
Roll-back scenario
In case anything goes wrong, rolling back the builder and the server will bring back the previous configuration.
This will however then start re-processing of the just deleted Swift version (if that has already happened). Given that, it's probably not advisable to roll back unless there's a problem that can't be fixed in any other way, or it should be done in conjunction with a db restore to bring back the deleted Swift versions.
Post deployment
Preconditions: all the above steps have been completed, not time critical
- Remove obsolete runner tag
swift-x.y in builder CI/DC
- Reset
BUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALING to 1
Update SPIManifest
Preconditions: None.
This can be done at any time. It only takes effect once the adopting packages (Server and Builder) update to this version.
Example change: https://github.com/SwiftPackageIndex/SPIManifest/pull/39/files
Update PackageList
Preconditions:
new Swift docker image available (alternatively, use a nightly toolchain)
Update PackageList
Merge
Note: There's little point in merging this in order to be able to add new packages that have their tools-version set to this new version unless the server changes have been deployed. If the server can't "package dump" this tools version the analysis step will fail and the package will not show up in the index. However, it is safe to merge this ahead of time. Packages that have been added will start appearing once the server has been updated.
Example change: https://github.com/SwiftPackageIndex/PackageList/pull/7208/files
Update PackageList-Validator
Preconditions:
This ensures via the CI build that the
validatorbinary which is built in thePackageListrepository can be built successfully with the latest Swift version.Example change: https://github.com/SwiftPackageIndex/PackageList-Validator/pull/61/files
Update spi-images
Preconditions: new Swift docker image available (automatically ensured by package CI)
The images don't need to be tagged, as they are automatically picked up via their
.../spi-images:basic-5.8-latesttag.Example change: https://gitlab.com/finestructure/spi-images/-/merge_requests/19/diffs
Update builder machines
Preconditions: new Xcode version available
swift-x.yin builder CI/DCUpdate Builder
Preconditions:
step
Update builder machinesstep
Update spi-imagesUpdate to new SPIManifest version and address all issues arising from non-exhaustive
switchstatements.Update
Makefileto build and test with new Xcode version (if Swift version is a release version)Update
.gitlab-ci-builder.yml: add/removebuild <platform> <swift-version>blocks.Update
.gitlab-ci-testmatrix.yml: add/remove newtest <platform> <swift-version>jobsmake commitwhen ready to deployhttps://gitlab.com/finestructure/swiftpackageindex-builder/-/merge_requests/354
Example change: https://gitlab.com/finestructure/swiftpackageindex-builder/-/merge_requests/253/diffs
Update spi-base
Preconditions: new Swift docker image available (automatically ensured by package CI)
Example change: https://gitlab.com/finestructure/spi-base/-/merge_requests/27/diffs
Update Server
Preconditions:
step
Update Builderstep
Update spi-baseUpdate
SPIManifestdependencyUpdate spi-base to newly tagged version
Update
SwiftVersion+Build.swiftand adjust to changesUdate
SwiftVersion.noteinSwiftVersion+BuildResultPresentableif neededEnsure any new
SupportedPlatformkeys are added to our matchingManifest.Platform.Nameenum so we don’t fail to decode package manifests that use them. (See issue 1441 for details.)Merge
set
BUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALINGto 0.8Example change: https://github.com/SwiftPackageIndex/SwiftPackageIndex-Server/pull/2899/files
Delete old Swift version builds
Preconditions: New server (one that doesn't trigger the Swift version to be deleted) has been deployed
Example SQL:
This should be run once the new Server has been deployed. Running it too early will lead to the deleted versions being triggered again. It's harmless but wastes build resources.
Deleting the records too long after deployment will inhibit triggering of the new Swift versions, because the presence of the old records will make the build result set appear to be complete. This is also harmless, as these will then be triggered once the deletion has happened.
Deployment notes
The final tasks before actual rollout should be:
BUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALINGThe steps should be followed in that order, although deviations are not critical.
Setting the
BUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALINGdoes not take effect until the server is redeployed.Deploying the new server version will start triggering new Swift version builds. If the builder cannot handle them yet (because it's not been updated), they will remain in the queue and will eventually be discarded.
Updating the builder means it will stop processing the deleted Swift version and add support for a new one. So if the builder were updated first, old Swift versions would still be triggered and remain in the queue until discarded.
Neither is problematic but it's best to simply immediately merge (and therefore deploy) the new builder when the new server comes online.
Finally, deleting the old Swift versions is what really starts the reprocessing. Without this step, only new packages or versions will trigger any builds for the new Swift version.
Roll-back scenario
In case anything goes wrong, rolling back the builder and the server will bring back the previous configuration.
This will however then start re-processing of the just deleted Swift version (if that has already happened). Given that, it's probably not advisable to roll back unless there's a problem that can't be fixed in any other way, or it should be done in conjunction with a db restore to bring back the deleted Swift versions.
Post deployment
Preconditions: all the above steps have been completed, not time critical
swift-x.yin builder CI/DCBUILD_TRIGGER_LATEST_SWIFT_VERSION_DOWNSCALINGto1