Skip to content
This repository was archived by the owner on Mar 16, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions ci/dockerfiles/mjackets-build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
FROM ubuntu:20.04
LABEL maintainer="RoboJackets <hello@robojackets.org"
# This value is overridden during Concourse jobs to use a local copy of the image.
# If you are changing the base image here, you should also change it in the Concourse pipeline configuration.
ARG base_image=ubuntu:20.04

FROM ${base_image}
LABEL maintainer="RoboJackets <hello@robojackets.org>"
LABEL description="Image for building and analyzing arm-embedded projects"

WORKDIR /work
Expand All @@ -14,13 +18,13 @@ RUN apt-get update && \
RUN pip3 install --upgrade pip && \
pip3 install --no-cache-dir -r requirements.txt

RUN wget -qO- https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 | tar -xj
RUN wget --quiet --output-document=- https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 | tar -xj

ENV PATH "/work/gcc-arm-none-eabi-9-2019-q4-major/bin:$PATH"

RUN wget -O cpp-build-wrapper.zip https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip \
RUN wget --quiet --output-document=cpp-build-wrapper.zip https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip \
&& unzip cpp-build-wrapper.zip \
&& wget -O sonar-scanner-cli.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.4.0.2170-linux.zip \
&& wget --quiet --output-document=sonar-scanner-cli.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.4.0.2170-linux.zip \
&& unzip sonar-scanner-cli.zip

ENV PATH "/work/sonar-scanner-4.4.0.2170-linux/bin:$PATH"
Expand Down
165 changes: 0 additions & 165 deletions ci/pipelines/docker-build/pipeline.yml

This file was deleted.

Loading