diff options
author | EuAndreh <eu@euandre.org> | 2021-01-30 10:41:14 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-30 10:41:14 -0300 |
commit | 555e946ca60cab5274ab10425efdbdc752ad12b7 (patch) | |
tree | 5bc9ba7a42ae7abb2225acf405f4a928bf27af4b /aux | |
parent | aux/ci/ci-build.sh: Remove --enable-(ci|programmer)-mode (diff) | |
download | remembering-555e946ca60cab5274ab10425efdbdc752ad12b7.tar.gz remembering-555e946ca60cab5274ab10425efdbdc752ad12b7.tar.xz |
aux/ci/: Use /srv over /data path
Diffstat (limited to 'aux')
-rwxr-xr-x | aux/ci/git-post-receive.sh | 4 | ||||
-rwxr-xr-x | aux/ci/git-pre-push.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/aux/ci/git-post-receive.sh b/aux/ci/git-post-receive.sh index 2f6e3c0..b169489 100755 --- a/aux/ci/git-post-receive.sh +++ b/aux/ci/git-post-receive.sh @@ -10,5 +10,5 @@ for n in $(seq 0 $((GIT_PUSH_OPTION_COUNT - 1))); do done PACKAGE="$(basename "$PWD" | cut -d. -f1)" # remove .git suffix -LOGS_DIR="/data/ci/$PACKAGE/logs" -"/data/ci/$PACKAGE/ci-build.sh" "$PACKAGE" "$LOGS_DIR" +LOGS_DIR="/srv/ci/$PACKAGE/logs" +"/srv/ci/$PACKAGE/ci-build.sh" "$PACKAGE" "$LOGS_DIR" diff --git a/aux/ci/git-pre-push.sh b/aux/ci/git-pre-push.sh index 30d2850..d90a4b4 100755 --- a/aux/ci/git-pre-push.sh +++ b/aux/ci/git-pre-push.sh @@ -2,8 +2,8 @@ set -eux PACKAGE="$(basename "$PWD")" -LOGS_DIR="/data/ci/$PACKAGE/logs" -REMOTE_GIT_DIR="/data/git/$PACKAGE.git" +LOGS_DIR="/srv/ci/$PACKAGE/logs" +REMOTE_GIT_DIR="/srv/git/$PACKAGE.git" DESCRIPTION="$(mktemp)" if [ -f description ] |