Skip to content

Commit 638aee0

Browse files
committed
CI & Kconfig: sort architectures
Signed-off-by: Miguel Ojeda <[email protected]>
1 parent 6590c80 commit 638aee0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
arch: [x86_64, arm64, ppc64le]
13+
arch: [arm64, ppc64le, x86_64]
1414
toolchain: [gcc, clang, llvm]
1515
config: [debug, release]
1616
rustc: [2021-02-20]
@@ -29,15 +29,15 @@ jobs:
2929
# - The other three (`install`, `sysroot`) combinations
3030
# (they are interrelated, so the cross-product needs to be tested)
3131
include:
32-
- arch: x86_64
32+
- arch: arm64
3333
toolchain: gcc
3434
config: debug
3535
rustc: 2021-02-20
3636
output: build
3737
install: rustup
3838
sysroot: custom
3939

40-
- arch: arm64
40+
- arch: ppc64le
4141
toolchain: clang
4242
config: release
4343
rustc: 2021-02-20

init/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ config LLD_VERSION
5858
default 0
5959

6060
config HAS_RUST
61-
depends on ARM64 || X86_64 || (PPC64 && CPU_LITTLE_ENDIAN)
61+
depends on ARM64 || (PPC64 && CPU_LITTLE_ENDIAN) || X86_64
6262
def_bool $(success,$(RUSTC) --version)
6363

6464
config RUSTC_VERSION

0 commit comments

Comments
 (0)