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
  • prosper/gitlab-ci-cd
1 result
Show changes
Commits on Source (12)
...@@ -5,7 +5,7 @@ stages: ...@@ -5,7 +5,7 @@ stages:
test docker: test docker:
stage: test stage: test
image: griefed/gitlab-ci-cd:1.0.1 image: griefed/gitlab-ci-cd:1.0.4
services: services:
- name: docker:dind - name: docker:dind
alias: docker alias: docker
...@@ -23,8 +23,8 @@ test docker: ...@@ -23,8 +23,8 @@ test docker:
--push --push
--no-cache --no-cache
--platform linux/amd64,linux/arm64 --platform linux/amd64,linux/arm64
--tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop" --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA"
--tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop" . --tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA" .
except: except:
refs: refs:
- tags - tags
...@@ -34,7 +34,7 @@ test docker: ...@@ -34,7 +34,7 @@ test docker:
release: release:
needs: ['test docker'] needs: ['test docker']
stage: release stage: release
image: griefed/gitlab-ci-cd:1.0.1 image: griefed/gitlab-ci-cd:1.0.4
services: services:
- name: docker:dind - name: docker:dind
alias: docker alias: docker
...@@ -53,7 +53,7 @@ release: ...@@ -53,7 +53,7 @@ release:
build: build:
stage: build stage: build
image: griefed/gitlab-ci-cd:1.0.1 image: griefed/gitlab-ci-cd:1.0.4
services: services:
- name: docker:dind - name: docker:dind
alias: docker alias: docker
......
## [1.1.0](https://git.griefed.de/prosper/gitlab-ci-cd/compare/1.0.4...1.1.0) (2022-01-21)
### 🦊 CI/CD
* Update to 20.10.12-dind-alpine3.15 ([504c6cc](https://git.griefed.de/prosper/gitlab-ci-cd/commit/504c6cc1ed2b5e4f20936bc11be5580659c02870))
* Move to gitlab-ci-cd:1.0.4 which deprecates armv7 images. Staying up-to-date is more important than supporting old platforms. Sorry, you may need to consider getting a Raspberry Pi 4. ([b5572fc](https://git.griefed.de/prosper/gitlab-ci-cd/commit/b5572fcb3a92cce3b9de6deacb041d97308c078e))
### 🚀 Features
* Add discord.sh for webhook messages ([b0968e2](https://git.griefed.de/prosper/gitlab-ci-cd/commit/b0968e268bc9b763ad09eae6c39e6343b78521ed))
### 🛠 Fixes
* Add copy from fetcher that got lost during merge ([2f8e148](https://git.griefed.de/prosper/gitlab-ci-cd/commit/2f8e14872fd9ede45c1053bd5d1f924ff083a73e))
### Other
* **deps:** update docker docker tag to v20.10.11 ([bb3913a](https://git.griefed.de/prosper/gitlab-ci-cd/commit/bb3913aa7d250c8c514b0cc8995051a56c439071))
* **deps:** update docker docker tag to v20.10.12 ([c11124c](https://git.griefed.de/prosper/gitlab-ci-cd/commit/c11124c2ef85c7ad1a62c129ad8cd4126a33583c))
### [1.0.4](https://git.griefed.de/prosper/gitlab-ci-cd/compare/1.0.3...1.0.4) (2021-11-16) ### [1.0.4](https://git.griefed.de/prosper/gitlab-ci-cd/compare/1.0.3...1.0.4) (2021-11-16)
......
...@@ -4,19 +4,28 @@ RUN \ ...@@ -4,19 +4,28 @@ RUN \
apk add \ apk add \
curl && \ curl && \
LATEST_DOCKERX=$(curl --silent "https://api.github.com/repos/docker/buildx/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c 2-) && \ LATEST_DOCKERX=$(curl --silent "https://api.github.com/repos/docker/buildx/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | cut -c 2-) && \
curl \ echo "**** Acquire docker-buildx" && \
-L \ curl \
--output /docker-buildx \ -L \
"https://github.com/docker/buildx/releases/download/v${LATEST_DOCKERX}/buildx-v${LATEST_DOCKERX}.linux-amd64" && \ --output /docker-buildx \
chmod a+x \ "https://github.com/docker/buildx/releases/download/v${LATEST_DOCKERX}/buildx-v${LATEST_DOCKERX}.linux-amd64" && \
/docker-buildx chmod a+x \
/docker-buildx && \
echo "**** Acquire discord.sh from ChaoticWeg/discord.sh" && \
curl \
-L \
--output /discord.sh \
https://raw.githubusercontent.com/ChaoticWeg/discord.sh/master/discord.sh && \
chmod a+x \
/discord.sh
FROM docker:20.10.10-dind-alpine3.14 FROM docker:20.10.12-dind-alpine3.15
LABEL maintainer="Griefed <griefed@griefed.de>" LABEL maintainer="Griefed <griefed@griefed.de>"
LABEL description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines." LABEL description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines."
COPY --from=fetcher /docker-buildx /usr/lib/docker/cli-plugins/docker-buildx COPY --from=fetcher /docker-buildx /usr/lib/docker/cli-plugins/docker-buildx
COPY --from=fetcher /discord.sh /discord.sh
ENV DOCKER_CLI_EXPERIMENTAL=enabled ENV DOCKER_CLI_EXPERIMENTAL=enabled
...@@ -30,14 +39,15 @@ RUN \ ...@@ -30,14 +39,15 @@ RUN \
curl \ curl \
git \ git \
nodejs-current \ nodejs-current \
jq \
npm \ npm \
openjdk8 && \ openjdk8 && \
echo "node version is: " && \ echo "node version is: " && \
node -v && \ node -v && \
echo "npm version is: " && \ echo "npm version is: " && \
npm -v && \ npm -v && \
echo "updating npm..." && \ echo "updating npm..." && \
npm update -g && \ npm update -g && \
echo "node version is: " && \ echo "node version is: " && \
node -v && \ node -v && \
echo "npm version is: " && \ echo "npm version is: " && \
...@@ -53,13 +63,16 @@ RUN \ ...@@ -53,13 +63,16 @@ RUN \
@semantic-release/gitlab \ @semantic-release/gitlab \
@semantic-release/npm \ @semantic-release/npm \
@semantic-release/release-notes-generator && \ @semantic-release/release-notes-generator && \
echo "**** Making docker-buildx executable for all ****" && \ echo "**** Making docker-buildx and discord.sh executable for all ****" && \
chmod a+x \ chmod a+x \
/usr/lib/docker/cli-plugins/docker-buildx && \ /usr/lib/docker/cli-plugins/docker-buildx && \
chmod a+x \
/discord.sh && \
echo "**** Installing quasar ****" && \ echo "**** Installing quasar ****" && \
npm install -g \ npm install -g \
@quasar/cli && \ @quasar/cli && \
echo "**** Cleanup ****" && \ echo "**** Cleanup ****" && \
rm -rf \ rm -rf \
/var/cache/apk/* \ /var/cache/apk/* \
/tmp/* /tmp/* \
...@@ -15,3 +15,4 @@ Combines: ...@@ -15,3 +15,4 @@ Combines:
- [GitLab Semantic Release](https://git.griefed.de/prosper/gitlab-semantic-release) - [GitLab Semantic Release](https://git.griefed.de/prosper/gitlab-semantic-release)
- NodeJS for CI - NodeJS for CI
- Docker-in-Docker - Docker-in-Docker
- [discord.sh](https://github.com/ChaoticWeg/discord.sh)
\ No newline at end of file
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
"extends": [ "extends": [
"config:base" "config:base"
], ],
"prConcurrentLimit": 0,
"labels": ["dependencies"], "labels": ["dependencies"],
"assignees": ["Griefed"] "assignees": ["Griefed"]
} }