gitlab-ci: use git-annex instead of git-lfs

This commit is contained in:
Antoine Martin 2024-08-10 11:36:13 -04:00
parent 2fe9942076
commit 583e4c78d5
Signed by: forge
GPG key ID: D62A472A4AA7D541
3 changed files with 8 additions and 4 deletions

View file

@ -36,6 +36,7 @@ lint:
- keys/
- logs/
expire_in: 7 days
when: always
only:
- merge_requests
@ -56,6 +57,7 @@ lint:
- keys/
- logs/
expire_in: 7 days
when: always
only:
- merge_requests
@ -97,7 +99,7 @@ push:
stage: deploy
script:
- |
sudo apk add abuild git-lfs findutils
sudo apk add abuild git-annex findutils
export PATH="$PATH:$CI_PROJECT_DIR/.gitlab/bin"
push.sh
rules:

View file

@ -8,7 +8,7 @@ set -eu -o pipefail
readonly APORTSDIR=$CI_PROJECT_DIR
readonly REPOS="cross backports user testing community"
readonly ALPINE_REPOS="main community testing"
readonly ALPINE_REPOS="main community"
readonly ARCH=$(apk --print-arch)
# gitlab variables
readonly BASEBRANCH=$CI_MERGE_REQUEST_TARGET_BRANCH_NAME

View file

@ -28,9 +28,11 @@ if [ -d $HOME/repo-apk ]; then
git -C $HOME/repo-apk checkout $BASEBRANCH
git -C $HOME/repo-apk pull --rebase
else
git clone git@lab.ilot.io:ayakael/repo-apk -b $BASEBRANCH $HOME/repo-apk
git clone forgejo@ayakael.net:forge/repo-apk.git -b $BASEBRANCH $HOME/repo-apk
fi
git -C $HOME/repo-apk annex sync --content
for i in $(find packages -type f -name "*.apk"); do
install -vDm644 $i ${i/packages/$HOME\/repo-apk}
done
@ -53,4 +55,4 @@ done
git -C $HOME/repo-apk add .
git -C $HOME/repo-apk commit -m "Update from $CI_MERGE_REQUEST_IID - $CI_MERGE_REQUEST_TITLE"
git -C $HOME/repo-apk push
git -C $HOME/repo-apk annex sync --content