X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=.drone.yml;h=4c4555a8a8da24e987be1bdc05382e31be047d46;hb=41062eb7e4036946711afefd529de5c9a89b7b9d;hp=cf02780417976af7fa90267c46c012dc0489a551;hpb=04b2eb41cd67950c2247d6795e6a66e7761747a1;p=friendica.git diff --git a/.drone.yml b/.drone.yml index cf02780417..4c4555a8a8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,6 +15,22 @@ steps: --- kind: pipeline type: docker +name: Integrity checks + +steps: + - name: Check database version + image: alpine + commands: + - export DBSTRUCTURE_VERSION="$(sed -rn "s/.*'DB_UPDATE_VERSION', ([0-9]+).*/\1/p" static/dbstructure.config.php)" + - export DATABASE_VERSION="$(sed -rn 's/.*DB_UPDATE_VERSION ([0-9]+).*/\1/p' database.sql)" + - echo "Database $DATABASE_VERSION - DB-Structure $DBSTRUCTURE_VERSION" + - if [[ "$DBSTRUCTURE_VERSION" != "$DATABASE_VERSION" ]]; then + echo "Database version mismatch."; + exit 1; + fi +--- +kind: pipeline +type: docker name: php7.3-lint steps: @@ -390,10 +406,11 @@ steps: --transform "s,^,$RELEASE/," -X mods/release-list-exclude.txt -T mods/release-list-include.txt - -cvjf ./build/$ARTIFACT + -cvzf ./build/$ARTIFACT - # calculate SHA256 checksum - cd ./build - sha256sum "$ARTIFACT" > "$ARTIFACT.sum256" + - chmod 664 ./* - ls -lh - # output the sha256 sum for checking - cat "$ARTIFACT.sum256" @@ -498,10 +515,11 @@ steps: --transform "s,^,$RELEASE/," -X mods/release-list-exclude.txt -T mods/release-list-include.txt - -cvjf ./build/$ARTIFACT + -cvzf ./build/$ARTIFACT - # calculate SHA256 checksum - cd ./build - sha256sum "$ARTIFACT" > "$ARTIFACT.sum256" + - chmod 664 ./* - ls -lh - # output the sha256 sum for checking - cat "$ARTIFACT.sum256"