Use ARM64 linux runners #48
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant updates to the GitHub Actions workflows and the build tasks for Docker images. The changes primarily focus on improving the build process by adding support for multiple architectures and simplifying the build task structure.
Workflow Improvements:
.github/workflows/build-deps.yml
: Updated to include matrix builds for different architectures and distributions, and added steps for building and pushing Docker images to both DockerHub and GitHub Container Registry. Removed the QEMU setup step. [1] [2] [3].github/workflows/build-images.yml
: Renamed frombuild.yml
and updated similarly tobuild-deps.yml
to support matrix builds and multiple architecture handling. [1] [2] [3] [4] [5]Build Task Refactoring:
build/build/Tasks/BaseDockerBuild.cs
: Renamed fromDockerBaseTask.cs
and refactored to remove Docker manifest creation logic, which has been moved to a new task. [1] [2] [3]build/build/Tasks/BaseDockerBuildManifest.cs
: New file created to handle Docker manifest creation logic, previously part ofDockerBaseTask
.build/build/Tasks/DockerBuildDeps.cs
: Updated to remove manifest creation logic, which is now handled byDockerBuildDepsManifest
. [1] [2] [3]build/build/Tasks/DockerBuildDepsManifest.cs
: New file created to handle Docker dependency image manifest creation.build/build/Tasks/DockerBuildImages.cs
: Renamed fromDockerBuild.cs
and updated to remove manifest creation logic, which is now handled byDockerBuildImagesManifest
. [1] [2] [3]Solution File Update:
build/CI.sln
: Updated to reflect the renaming of the workflow file frombuild.yml
tobuild-images.yml
.