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
c94453fe
Commit
c94453fe
authored
3 years ago
by
Griefed
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml file
parent
ea12e1a5
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+9
-5
9 additions, 5 deletions
.gitlab-ci.yml
with
9 additions
and
5 deletions
.gitlab-ci.yml
+
9
−
5
View file @
c94453fe
...
@@ -87,13 +87,13 @@ Check Packages:on-schedule:
...
@@ -87,13 +87,13 @@ Check Packages:on-schedule:
echo "Preparations complete."
echo "Preparations complete."
script
:
script
:
-
|-
-
|-
echo "Comparing package versions."
echo "Comparing package versions."
&& \
# 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 '\
...
@@ -117,7 +117,7 @@ Check Packages:on-schedule:
...
@@ -117,7 +117,7 @@ Check Packages:on-schedule:
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 . && \
...
@@ -132,11 +132,15 @@ Check Packages:on-schedule:
...
@@ -132,11 +132,15 @@ Check Packages:on-schedule:
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
echo "Checksums differ. Updating..." && \
# Checkout our branch
# Checkout our branch
git checkout -f $CI_DEFAULT_BRANCH && \
git checkout -f $CI_DEFAULT_BRANCH && \
...
...
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