Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ci-docker-images
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Algorithms Library Toolkit
infrastructure
ci-docker-images
Compare revisions
984ab2db1f8047b01c7779505108cd0aaf62ee6e to 2a26d8ed904995c5c8d5e1ab6390ed7149b50534
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
algorithms-library-toolkit/infrastructure/ci-docker-images
Select target project
No results found
2a26d8ed904995c5c8d5e1ab6390ed7149b50534
Select Git revision
Branches
master
Swap
Target
algorithms-library-toolkit/infrastructure/ci-docker-images
Select target project
algorithms-library-toolkit/infrastructure/ci-docker-images
1 result
984ab2db1f8047b01c7779505108cd0aaf62ee6e
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
ci: adjust fit buildah image
· a107a308
Tomáš Pecka
authored
4 months ago
a107a308
[alt-builder] update to debian trixie
· 2a26d8ed
Tomáš Pecka
authored
4 months ago
2a26d8ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
alt-builder/Dockerfile
+6
-7
6 additions, 7 deletions
alt-builder/Dockerfile
with
8 additions
and
9 deletions
.gitlab-ci.yml
View file @
2a26d8ed
...
...
@@ -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
:
©-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}"
...
...
This diff is collapsed.
Click to expand it.
alt-builder/Dockerfile
View file @
2a26d8ed
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++-1
5
lld-1
5
libc++abi1-1
5
libc++abi-1
5
-dev libc++1-1
5
libc++-1
5
-dev \
jq clang-tidy-1
5
cppcheck \
clang-format-1
5
\
clang++-1
8
lld-1
8
libc++abi1-1
8
libc++abi-1
8
-dev libc++1-1
8
libc++-1
8
-dev \
jq clang-tidy-1
8
cppcheck \
clang-format-1
8
\
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
...
...
This diff is collapsed.
Click to expand it.