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
2.2.26 to 2.2.27
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
2.2.27
Select Git revision
Swap
Target
prosper/gitlab-ci-cd
Select target project
prosper/gitlab-ci-cd
1 result
2.2.26
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (7)
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
RELEASE: 2.2.27
· 0b83ce12
semantic-release-bot
authored
2 months ago
0b83ce12
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+3
-3
3 additions, 3 deletions
.gitlab-ci.yml
CHANGELOG.md
+14
-0
14 additions, 0 deletions
CHANGELOG.md
Dockerfile
+2
-2
2 additions, 2 deletions
Dockerfile
with
19 additions
and
5 deletions
.gitlab-ci.yml
View file @
0b83ce12
...
...
@@ -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.
CHANGELOG.md
View file @
0b83ce12
## [2.2.27](https://git.griefed.de/prosper/gitlab-ci-cd/compare/2.2.26...2.2.27) (2025-01-17)
### 🦊 CI/CD
*
Deprecate armv7 (
[
9cab74b
](
https://git.griefed.de/prosper/gitlab-ci-cd/commit/9cab74b9a85ef58bc577bcb1d59bfdcc35ac2a2c
)
)
*
Fix yaml by removing derp block (
[
3aa07bc
](
https://git.griefed.de/prosper/gitlab-ci-cd/commit/3aa07bcf2b2ca30a0252d7715bc6ffe38ac37b96
)
)
*
Move to GHCR (
[
eecbda2
](
https://git.griefed.de/prosper/gitlab-ci-cd/commit/eecbda205227adb3a14908d60108763b1e4a4c55
)
)
### 🛠 Fixes
*
Bump to alpine v3.20 for nodejs 20 (
[
e210eb1
](
https://git.griefed.de/prosper/gitlab-ci-cd/commit/e210eb1271d2986dfc644b45feab58d26e17dde8
)
)
## [2.2.26](https://git.griefed.de/prosper/gitlab-ci-cd/compare/2.2.25...2.2.26) (2024-11-01)
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
View file @
0b83ce12
...
...
@@ -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.