Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gitlab-ci-cd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
JetBrains YouTrack
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Prosper
gitlab-ci-cd
Compare revisions
75f07d8783e4d51ecb609f7af6953f1b286f484e to 643d96084285cc70582e08b430bcfc74e7abb8fc
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
prosper/gitlab-ci-cd
Select target project
No results found
643d96084285cc70582e08b430bcfc74e7abb8fc
Select Git revision
Swap
Target
prosper/gitlab-ci-cd
Select target project
prosper/gitlab-ci-cd
1 result
75f07d8783e4d51ecb609f7af6953f1b286f484e
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (6)
fix: Bump to alpine v3.20 for nodejs 20
· e210eb12
Griefed
authored
2 months ago
e210eb12
deps: Bump dind to 27.5.0-dind
· 4ab1a1f3
Griefed
authored
2 months ago
4ab1a1f3
ci: Move to GHCR
· eecbda20
Griefed
authored
2 months ago
eecbda20
build: Deprecate armv7
· 9cab74b9
Griefed
authored
2 months ago
9cab74b9
ci: Fix yaml by removing derp block
· 3aa07bcf
Griefed
authored
2 months ago
3aa07bcf
Merge branch 'develop' into 'main'
· 643d9608
Griefed
authored
2 months ago
Develop See merge request
!23
643d9608
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+3
-3
3 additions, 3 deletions
.gitlab-ci.yml
Dockerfile
+2
-2
2 additions, 2 deletions
Dockerfile
with
5 additions
and
5 deletions
.gitlab-ci.yml
View file @
643d9608
...
...
@@ -4,10 +4,10 @@ stages:
-
build
services
:
-
name
:
docker.griefed.dev
/griefed/gitlab-ci-cd:2.2.12
-
name
:
ghcr.io
/griefed/gitlab-ci-cd:2.2.12
alias
:
docker
image
:
docker.griefed.dev
/griefed/gitlab-ci-cd:2.2.12
image
:
ghcr.io
/griefed/gitlab-ci-cd:2.2.12
variables
:
project_name
:
$CI_PROJECT_NAME
...
...
@@ -33,7 +33,7 @@ test docker:
-
docker buildx build
--push
--no-cache
--platform linux/amd64,linux/arm64
,linux/arm/v7
--platform linux/amd64,linux/arm64
--tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA"
--tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA" .
except
:
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
View file @
643d9608
...
...
@@ -19,7 +19,7 @@ RUN \
chmod
a+x
\
/discord.sh
FROM
mazzolino/
docker:2
0.10.12
-dind
FROM
docker:2
7.5.0
-dind
LABEL
maintainer="Griefed <griefed@griefed.de>"
LABEL
description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines."
...
...
@@ -34,7 +34,7 @@ RUN \
apk update
&&
\
apk upgrade
&&
\
apk add
--no-cache
\
--repository
https://dl-cdn.alpinelinux.org/alpine/v3.
17
/main/
\
--repository
https://dl-cdn.alpinelinux.org/alpine/v3.
20
/main/
\
nodejs
\
npm
&&
\
apk add
--no-cache
\
...
...
This diff is collapsed.
Click to expand it.