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
Commits
1c98f26a
Commit
1c98f26a
authored
2 years ago
by
Griefed
Browse files
Options
Downloads
Patches
Plain Diff
no message
parent
f3a55e41
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+24
-24
24 additions, 24 deletions
.gitlab-ci.yml
with
24 additions
and
24 deletions
.gitlab-ci.yml
+
24
−
24
View file @
1c98f26a
...
@@ -3,10 +3,8 @@ stages:
...
@@ -3,10 +3,8 @@ stages:
-
release
-
release
-
build
-
build
image
:
griefed/gitlab-ci-cd:2.0.8
services
:
services
:
-
name
:
docker:dind
-
name
:
ghcr.io/griefed/gitlab-ci-cd:2.0.8
alias
:
docker
alias
:
docker
variables
:
variables
:
...
@@ -23,6 +21,7 @@ workflow:
...
@@ -23,6 +21,7 @@ workflow:
test docker
:
test docker
:
stage
:
test
stage
:
test
image
:
ghcr.io/griefed/gitlab-ci-cd:2.0.8
before_script
:
before_script
:
-
docker login -u "$DOCKERHUB_USER" -p "$DOCKERHUB_TOKEN" docker.io
-
docker login -u "$DOCKERHUB_USER" -p "$DOCKERHUB_TOKEN" docker.io
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
...
@@ -57,6 +56,7 @@ release:
...
@@ -57,6 +56,7 @@ release:
build
:
build
:
stage
:
build
stage
:
build
image
:
ghcr.io/griefed/gitlab-ci-cd:2.0.8
before_script
:
before_script
:
-
docker login -u "$DOCKERHUB_USER" -p "$DOCKERHUB_TOKEN" docker.io
-
docker login -u "$DOCKERHUB_USER" -p "$DOCKERHUB_TOKEN" docker.io
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
...
@@ -88,7 +88,7 @@ Check Packages:on-schedule:
...
@@ -88,7 +88,7 @@ Check Packages:on-schedule:
if [[ "$(git config --list | grep user.email)" != "user.email=$GIT_MAIL" ]];then
if [[ "$(git config --list | grep user.email)" != "user.email=$GIT_MAIL" ]];then
git config --global user.email $GIT_MAIL
git config --global user.email $GIT_MAIL
fi
fi
# Clean system of potentially interrupting images
# Clean system of potentially interrupting images
docker image rm -f $DOCKERHUB_USER/$DOCKERHUB_REPO:latest
docker image rm -f $DOCKERHUB_USER/$DOCKERHUB_REPO:latest
docker image rm -f $DOCKERHUB_REPO
docker image rm -f $DOCKERHUB_REPO
...
@@ -101,51 +101,51 @@ Check Packages:on-schedule:
...
@@ -101,51 +101,51 @@ Check Packages:on-schedule:
# Clone the repository
# Clone the repository
git clone $CI_PROJECT_URL.git /tmp/$CI_PROJECT_PATH && \
git clone $CI_PROJECT_URL.git /tmp/$CI_PROJECT_PATH && \
cd /tmp/$CI_PROJECT_PATH && \
cd /tmp/$CI_PROJECT_PATH && \
if [ ! -s "package_versions.txt" ];then
if [ ! -s "package_versions.txt" ];then
echo "No package_versions.txt available..." && \
echo "No package_versions.txt available..." && \
# Gather package information from latest build
# Gather package information from latest build
docker run --rm --entrypoint /bin/sh -v /tmp/$CI_PROJECT_PATH:/tmp $DOCKERHUB_USER/$DOCKERHUB_REPO:latest -c '\
docker run --rm --entrypoint /bin/sh -v /tmp/$CI_PROJECT_PATH:/tmp $DOCKERHUB_USER/$DOCKERHUB_REPO:latest -c '\
apk info -v > /tmp/package_versions.txt && \
apk info -v > /tmp/package_versions.txt && \
sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \
sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \
chmod 777 /tmp/package_versions.txt' && \
chmod 777 /tmp/package_versions.txt' && \
# Checkout our branch
# Checkout our branch
git checkout -f $CI_DEFAULT_BRANCH && \
git checkout -f $CI_DEFAULT_BRANCH && \
wait && \
wait && \
# Add and commit new file to repository
# Add and commit new file to repository
git add package_versions.txt && \
git add package_versions.txt && \
git commit -m 'chore: Add list of package versions.' && \
git commit -m 'chore: Add list of package versions.' && \
# Push the changes to the remote
# Push the changes to the remote
git push "https://$GIT_USER:$GITLAB_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git" --all && \
git push "https://$GIT_USER:$GITLAB_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git" --all && \
# Nice
# Nice
echo "package_versions.txt added."
echo "package_versions.txt added."
elif [ -s "package_versions.txt" ];then
elif [ -s "package_versions.txt" ];then
echo "Local package_versions.txt available..." && \
echo "Local package_versions.txt available..." && \
# Build local image for new package versions list
# Build local image for new package versions list
docker build --no-cache --tag $DOCKERHUB_REPO . && \
docker build --no-cache --tag $DOCKERHUB_REPO . && \
# Get packages from newly build local image
# Get packages from newly build local image
docker run --rm --entrypoint /bin/sh -v /tmp/$CI_PROJECT_PATH:/tmp $DOCKERHUB_REPO -c '\
docker run --rm --entrypoint /bin/sh -v /tmp/$CI_PROJECT_PATH:/tmp $DOCKERHUB_REPO -c '\
apk info -v > /tmp/package_versions_new.txt && \
apk info -v > /tmp/package_versions_new.txt && \
sort -o /tmp/package_versions_new.txt /tmp/package_versions_new.txt && \
sort -o /tmp/package_versions_new.txt /tmp/package_versions_new.txt && \
chmod 777 /tmp/package_versions_new.txt' && \
chmod 777 /tmp/package_versions_new.txt' && \
# Get checksum of old packages
# Get checksum of old packages
OLD_CHECKSUM=$(md5sum package_versions.txt | cut -f1 -d" ") && \
OLD_CHECKSUM=$(md5sum package_versions.txt | cut -f1 -d" ") && \
# Get checksum of new packages
# Get checksum of new packages
NEW_CHECKSUM=$(md5sum package_versions_new.txt | cut -f1 -d" ")
NEW_CHECKSUM=$(md5sum package_versions_new.txt | cut -f1 -d" ")
# If new checksum is not the same as old checksum, we have new versions
# If new checksum is not the same as old checksum, we have new versions
if [ "${OLD_CHECKSUM}" != "${NEW_CHECKSUM}" ]; then
if [ "${OLD_CHECKSUM}" != "${NEW_CHECKSUM}" ]; then
...
@@ -153,25 +153,25 @@ Check Packages:on-schedule:
...
@@ -153,25 +153,25 @@ Check Packages:on-schedule:
# Checkout our branch
# Checkout our branch
git checkout -f $CI_DEFAULT_BRANCH && \
git checkout -f $CI_DEFAULT_BRANCH && \
# Copy the new package versions list to repository
# Copy the new package versions list to repository
mv -f package_versions_new.txt package_versions.txt && \
mv -f package_versions_new.txt package_versions.txt && \
wait && \
wait && \
# Add and commit new file to repository
# Add and commit new file to repository
git add package_versions.txt && \
git add package_versions.txt && \
git commit -m 'build: Update installed packages.' && \
git commit -m 'build: Update installed packages
in Docker container
.' && \
# Push the changes to the remote
# Push the changes to the remote
git push "https://$GIT_USER:$GITLAB_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git" --all && \
git push "https://$GIT_USER:$GITLAB_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git" --all && \
# Nice
# Nice
echo "Packages updated."
echo "Packages updated."
else
else
echo "No package updates available."
echo "No package updates available."
fi
fi
fi
fi
echo "Comparison complete."
echo "Comparison complete."
after_script
:
after_script
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment