add two more toolchains in jenkinsfile
Rust/max116xx-10bit/pipeline/pr-main This commit looks good Details
Rust/max116xx-10bit/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2021-12-14 14:13:45 +01:00
parent cc0680ea63
commit 0cd4d7369b
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
2 changed files with 4 additions and 1 deletions

View File

@ -7,5 +7,6 @@ RUN apt-get --yes upgrade
# tzdata is a dependency, won't install otherwise
ARG DEBIAN_FRONTEND=noninteractive
RUN rustup target add thumbv6m-none-eabi armv7-unknown-linux-gnueabihf && \
RUN rustup target add thumbv6m-none-eabi armv7-unknown-linux-gnueabihf \
thumbv7em-none-eabihf x86_64-unknown-linux-gnu && \
rustup component add rustfmt clippy

View File

@ -34,6 +34,8 @@ pipeline {
steps {
sh 'cargo check --target thumbv6m-none-eabi'
sh 'cargo check --target armv7-unknown-linux-gnueabihf'
sh 'cargo check --target x86_64-unknown-linux-gnu'
sh 'cargo check --target thumbv7em-none-eabihf'
}
}
}