-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github(workflows): bump Ubuntu from 20.04 to 22.04 (#590)
This commit also bumps: - musl from to 1.1.24 to 1.2.2. - GCC from 10.3 to 11.2 (GCC 12 is not installed by default). With the configlet 4.0.0-beta.5 (2022-07-02) Linux release binary: $ readelf -p .comment configlet String dump of section '.comment': [ 0] GCC: (Ubuntu 9.2.1-12ubuntu1) 9.2.1 20191022 [ 2d] GCC: (Ubuntu 10.3.0-1ubuntu1~20.04) 10.3.0 With a configlet built in the GitHub Actions environment using the changes in this commit: $ readelf -p .comment configlet String dump of section '.comment': [ 0] GCC: (Ubuntu 11.2.0-7ubuntu2) 11.2.0 [ 25] GCC: (Ubuntu 11.2.0-19ubuntu1) 11.2.0 Links: - https://github.com/actions/runner-images/tree/c22e0f8ec89e#github-actions-runner-images - https://github.com/actions/runner-images/blob/c22e0f8ec89e/images/linux/Ubuntu2204-Readme.md - https://musl.libc.org/releases.html - https://git.musl-libc.org/cgit/musl/log/ - https://gcc.gnu.org/gcc-11/changes.html - https://gcc.gnu.org/releases.html - https://github.blog/changelog/2022-05-10-github-actions-beta-of-ubuntu-22-04-for-github-hosted-runners-is-now-available/ - https://github.blog/changelog/2022-08-09-github-actions-ubuntu-22-04-is-now-generally-available-on-github-hosted-runners/ Closes: #194 Closes: #568 Closes: #607
- Loading branch information
Showing
6 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
#!/usr/bin/env sh | ||
|
||
# Switch to GCC 10 | ||
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 | ||
sudo update-alternatives --set gcc /usr/bin/gcc-10 | ||
|
||
# Install musl | ||
sudo apt-get install musl-dev musl-tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters