now this should work
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good
This commit is contained in:
parent
20d5baaa0d
commit
dbe0e3062f
@ -10,5 +10,6 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||||||
# set CROSS_CONTAINER_IN_CONTAINER to inform `cross` that it is executed from within a container
|
# set CROSS_CONTAINER_IN_CONTAINER to inform `cross` that it is executed from within a container
|
||||||
ENV CROSS_CONTAINER_IN_CONTAINER=true
|
ENV CROSS_CONTAINER_IN_CONTAINER=true
|
||||||
|
|
||||||
RUN rustup target add thumbv7em-none-eabi && \
|
# TODO: installing cross is problematic, permission issues
|
||||||
|
RUN rustup target add thumbv7em-none-eabihf armv7-unknown-linux-gnueabihf && \
|
||||||
rustup component add rustfmt clippy
|
rustup component add rustfmt clippy
|
||||||
|
7
automation/Jenkinsfile
vendored
7
automation/Jenkinsfile
vendored
@ -28,10 +28,15 @@ pipeline {
|
|||||||
sh 'cargo check'
|
sh 'cargo check'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Check Cross') {
|
stage('Check Cross Embedded Bare Metal') {
|
||||||
steps {
|
steps {
|
||||||
sh 'cargo check --target thumbv7em-none-eabihf --no-default-features'
|
sh 'cargo check --target thumbv7em-none-eabihf --no-default-features'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Check Cross Embedded Linux') {
|
||||||
|
steps {
|
||||||
|
sh 'cargo check --target armv7-unknown-linux-gnueabihf'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user