Update rust docker image for CI (#91)
* Update rust docker image for CI * Use macos aarch64 until x86 issues are solved
This commit is contained in:
parent
4981c724af
commit
ae5c5b9d4c
|
@ -1,11 +1,12 @@
|
||||||
FROM rust:1.65.0-slim-bullseye
|
FROM rust:1.67.0-slim-bullseye
|
||||||
|
|
||||||
LABEL maintainer="augustinas@status.im"
|
LABEL maintainer="augustinas@status.im"
|
||||||
LABEL source="https://github.com/logos-co/nomos-research"
|
LABEL source="https://github.com/logos-co/nomos-research"
|
||||||
LABEL description="nomos-research ci build image"
|
LABEL description="nomos-research ci build image"
|
||||||
|
|
||||||
# Using backports for go 1.19
|
# Using backports for go 1.19
|
||||||
RUN echo 'deb http://deb.debian.org/debian bullseye-backports main' >> /etc/apt/sources.list
|
RUN echo 'deb http://deb.debian.org/debian bullseye-backports main' \
|
||||||
|
>> /etc/apt/sources.list
|
||||||
|
|
||||||
# Dependecies for publishing documentation and building waku-bindings.
|
# Dependecies for publishing documentation and building waku-bindings.
|
||||||
RUN apt-get update && apt-get install -yq \
|
RUN apt-get update && apt-get install -yq \
|
||||||
|
|
|
@ -2,7 +2,7 @@ library 'status-jenkins-lib@v1.6.0'
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
label 'macos && x86_64'
|
label 'macos && aarch64'
|
||||||
}
|
}
|
||||||
|
|
||||||
environment {
|
environment {
|
||||||
|
|
Loading…
Reference in New Issue