From 0cd4d7369b09fb49283c35e956bb16ad2706ec73 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 14 Dec 2021 14:13:45 +0100 Subject: [PATCH] add two more toolchains in jenkinsfile --- automation/Dockerfile | 3 ++- automation/Jenkinsfile | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/automation/Dockerfile b/automation/Dockerfile index 84da5d0..9834d56 100644 --- a/automation/Dockerfile +++ b/automation/Dockerfile @@ -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 diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index df13c69..16c2c78 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -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' } } }