Skip to content
Snippets Groups Projects
Commit c94453fe authored by Griefed's avatar Griefed :joystick:
Browse files

Update .gitlab-ci.yml file

parent ea12e1a5
No related branches found
No related tags found
No related merge requests found
...@@ -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 && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment