Merge pull request #704 from tgross35/riscv-ci
This commit is contained in:
commit
f5010ea4f9
2 changed files with 16 additions and 0 deletions
|
|
@ -61,6 +61,9 @@ jobs:
|
|||
- target: powerpc64le-unknown-linux-gnu
|
||||
os: ubuntu-latest
|
||||
rust: nightly
|
||||
- target: riscv64gc-unknown-linux-gnu
|
||||
os: ubuntu-latest
|
||||
rust: nightly
|
||||
- target: thumbv6m-none-eabi
|
||||
os: ubuntu-latest
|
||||
rust: nightly
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
ARG IMAGE=ubuntu:24.04
|
||||
FROM $IMAGE
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
gcc libc6-dev qemu-user-static ca-certificates \
|
||||
gcc-riscv64-linux-gnu libc6-dev-riscv64-cross \
|
||||
qemu-system-riscv64
|
||||
|
||||
ENV CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_LINKER=riscv64-linux-gnu-gcc \
|
||||
CARGO_TARGET_RISCV64GC_UNKNOWN_LINUX_GNU_RUNNER=qemu-riscv64-static \
|
||||
QEMU_LD_PREFIX=/usr/riscv64-linux-gnu \
|
||||
RUST_TEST_THREADS=1
|
||||
Loading…
Add table
Add a link
Reference in a new issue