add two more toolchains in jenkinsfile
This commit is contained in:
parent
cc0680ea63
commit
0cd4d7369b
@ -7,5 +7,6 @@ RUN apt-get --yes upgrade
|
|||||||
# tzdata is a dependency, won't install otherwise
|
# tzdata is a dependency, won't install otherwise
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
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
|
rustup component add rustfmt clippy
|
||||||
|
2
automation/Jenkinsfile
vendored
2
automation/Jenkinsfile
vendored
@ -34,6 +34,8 @@ pipeline {
|
|||||||
steps {
|
steps {
|
||||||
sh 'cargo check --target thumbv6m-none-eabi'
|
sh 'cargo check --target thumbv6m-none-eabi'
|
||||||
sh 'cargo check --target armv7-unknown-linux-gnueabihf'
|
sh 'cargo check --target armv7-unknown-linux-gnueabihf'
|
||||||
|
sh 'cargo check --target x86_64-unknown-linux-gnu'
|
||||||
|
sh 'cargo check --target thumbv7em-none-eabihf'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user