Several improvements #1

Merged
muellerr merged 5 commits from simplified-api into main 2021-12-14 14:20:05 +01:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 0cd4d7369b - Show all commits

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'
}
}
}