Skip to content

Commit 22a4b6d

Browse files
committed
rust: support x86 (i.e. 32-bit)
Closes Rust-for-Linux#78. Closes Rust-for-Linux#460. Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
1 parent bca8dbc commit 22a4b6d

File tree

8 files changed

+3058
-4
lines changed

8 files changed

+3058
-4
lines changed

.github/workflows/ci.yaml

+9-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
arch: [arm, arm64, ppc64le, riscv64, x86_64]
13+
arch: [arm, arm64, ppc64le, riscv64, x86, x86_64]
1414
toolchain: [gcc, clang, llvm]
1515
config: [debug, release]
1616
rustc: [1.54.0]
@@ -74,6 +74,13 @@ jobs:
7474
${{ env.MATRIX_NAME  }}-ccache-
7575
7676
# Setup: variables
77+
- if: matrix.arch == 'x86'
78+
run: |
79+
echo 'IMAGE_PATH=arch/x86/boot/bzImage' >> $GITHUB_ENV
80+
echo 'QEMU_ARCH=i386' >> $GITHUB_ENV
81+
echo 'QEMU_MACHINE=pc' >> $GITHUB_ENV
82+
echo 'QEMU_CPU=Cascadelake-Server' >> $GITHUB_ENV
83+
echo 'QEMU_APPEND=console=ttyS0' >> $GITHUB_ENV
7784
- if: matrix.arch == 'x86_64'
7885
run: |
7986
echo 'IMAGE_PATH=arch/x86/boot/bzImage' >> $GITHUB_ENV
@@ -164,7 +171,7 @@ jobs:
164171
- run: sudo apt-get install -y libelf-dev
165172

166173
# Setup: QEMU
167-
- if: matrix.arch == 'x86_64'
174+
- if: matrix.arch == 'x86' || matrix.arch == 'x86_64'
168175
run: sudo apt-get install -y qemu-system-x86
169176
- if: matrix.arch == 'arm' || matrix.arch == 'arm64'
170177
run: sudo apt-get install -y qemu-system-arm

0 commit comments

Comments
 (0)