Skip to content

Commit 179d60f

Browse files
committed
remove feat_os_unix_musl
After the addition of utmpx, feat_os_unix_musl is now identical to feat_os_unix and is thus not needed any more. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com>
1 parent 080af18 commit 179d60f

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

.github/workflows/CICD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,13 +516,13 @@ jobs:
516516
# - { os , target , cargo-options , features , use-cross , toolchain, skip-tests, workspace-tests }
517517
- { os: ubuntu-latest , target: arm-unknown-linux-gnueabihf , features: feat_os_unix_gnueabihf , use-cross: use-cross , skip-tests: true }
518518
- { os: ubuntu-24.04-arm , target: aarch64-unknown-linux-gnu , features: feat_os_unix_gnueabihf }
519-
- { os: ubuntu-latest , target: aarch64-unknown-linux-musl , features: feat_os_unix_musl , use-cross: use-cross , skip-tests: true }
519+
- { os: ubuntu-latest , target: aarch64-unknown-linux-musl , features: feat_os_unix , use-cross: use-cross , skip-tests: true }
520520
# - { os: ubuntu-latest , target: x86_64-unknown-linux-gnu , features: feat_selinux , use-cross: use-cross }
521521
- { os: ubuntu-latest , target: i686-unknown-linux-gnu , features: "feat_os_unix,test_risky_names", use-cross: use-cross }
522-
- { os: ubuntu-latest , target: i686-unknown-linux-musl , features: feat_os_unix_musl , use-cross: use-cross }
522+
- { os: ubuntu-latest , target: i686-unknown-linux-musl , features: feat_os_unix , use-cross: use-cross }
523523
- { os: ubuntu-latest , target: x86_64-unknown-linux-gnu , features: "feat_os_unix,test_risky_names", use-cross: use-cross }
524524
- { os: ubuntu-latest , target: x86_64-unknown-linux-gnu , features: "feat_os_unix,uudoc" , use-cross: no, workspace-tests: true }
525-
- { os: ubuntu-latest , target: x86_64-unknown-linux-musl , features: feat_os_unix_musl , use-cross: use-cross }
525+
- { os: ubuntu-latest , target: x86_64-unknown-linux-musl , features: feat_os_unix , use-cross: use-cross }
526526
- { os: ubuntu-latest , target: x86_64-unknown-redox , features: feat_os_unix_redox , use-cross: redoxer , skip-tests: true }
527527
- { os: macos-latest , target: aarch64-apple-darwin , features: feat_os_macos, workspace-tests: true } # M1 CPU
528528
- { os: macos-13 , target: x86_64-apple-darwin , features: feat_os_macos, workspace-tests: true }

Cargo.toml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ feat_os_macos = [
148148
#
149149
"feat_require_unix_hostid",
150150
]
151-
# "feat_os_unix" == set of utilities which can be built/run on modern/usual *nix platforms
151+
# "feat_os_unix" == set of utilities which can be built/run on modern/usual *nix platforms.
152+
# Also used for targets binding to the "musl" library (ref: <https://musl.libc.org/about.html>)
152153
feat_os_unix = [
153154
"feat_Tier1",
154155
#
@@ -170,15 +171,6 @@ feat_os_unix_gnueabihf = [
170171
"feat_require_unix_hostid",
171172
"feat_require_unix_utmpx",
172173
]
173-
# "feat_os_unix_musl" == set of utilities which can be built/run on targets binding to the "musl" library (ref: <https://musl.libc.org/about.html>)
174-
feat_os_unix_musl = [
175-
"feat_Tier1",
176-
#
177-
"feat_require_crate_cpp",
178-
"feat_require_unix",
179-
"feat_require_unix_hostid",
180-
"feat_require_unix_utmpx",
181-
]
182174
feat_os_unix_android = [
183175
"feat_Tier1",
184176
#

0 commit comments

Comments
 (0)