Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • algorithms-library-toolkit/infrastructure/ci-docker-images
1 result
Show changes
Commits on Source (2)
......@@ -5,7 +5,7 @@ stages:
 
.push-only-job: &push-only-job
stage: deploy
image: $CI_REGISTRY/ict/images/buildah:v1
image: $CI_REGISTRY/ict/images/buildah:latest
script:
- IMAGE="${CI_JOB_NAME#deploy:}"
- IMAGE_NAME="${CI_REGISTRY_IMAGE}/${IMAGE}:latest"
......@@ -16,7 +16,7 @@ stages:
 
.create-local-copy: &copy-job
stage: deploy
image: $CI_REGISTRY/ict/images/buildah:v1
image: $CI_REGISTRY/ict/images/buildah:latest
script:
- IMAGE="${CI_JOB_NAME#copy:}"
- buildah pull "${IMAGE}"
......
FROM amd64/debian:bookworm
FROM amd64/debian:trixie
 
ARG ANTLR_VERSION=4.11.1
ARG REPLXX_VERSION=0.0.4
 
RUN apt-get update && apt-get install -y g++ g++-11 wget \
RUN apt-get update && apt-get install -y g++ wget \
cmake ninja-build python3 pkg-config \
openjdk-17-jre \
clang++-15 lld-15 libc++abi1-15 libc++abi-15-dev libc++1-15 libc++-15-dev \
jq clang-tidy-15 cppcheck \
clang-format-15 \
clang++-18 lld-18 libc++abi1-18 libc++abi-18-dev libc++1-18 libc++-18-dev \
jq clang-tidy-18 cppcheck \
clang-format-18 \
libxml2-dev libreadline-dev qtbase5-dev graphviz-dev libjsoncpp-dev libtclap-dev \
libxml2 libreadline8 libqt5widgets5 graphviz libqt5xml5 \
git && \
for file in /usr/bin/*-11; do ln -sf $file $(echo $file | sed 's/-11$//g'); done && \
for file in /usr/bin/*-15; do ln -sf $file $(echo $file | sed 's/-15$//g'); done
for file in /usr/bin/*-18; do ln -sf $file $(echo $file | sed 's/-18$//g'); done
 
WORKDIR /build
RUN git clone https://github.com/AmokHuginnsson/replxx.git --branch release-${REPLXX_VERSION} --depth 1
......