diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-28 20:31:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-28 20:31:13 -0300 |
commit | 4a700eea2e668dbd7f12e533e0b1ea1de059238f (patch) | |
tree | ca3b77659df2dcb65ba922ae21197a637b7aa4ab | |
parent | f9681ae7901ca761052b2d9a336a156dbbd2a8d1 (diff) | |
download | clientdata-4a700eea2e668dbd7f12e533e0b1ea1de059238f.tar.gz clientdata-4a700eea2e668dbd7f12e533e0b1ea1de059238f.tar.bz2 clientdata-4a700eea2e668dbd7f12e533e0b1ea1de059238f.tar.xz clientdata-4a700eea2e668dbd7f12e533e0b1ea1de059238f.zip |
SPM has been deprecated.
Deprecate the old 4144 deploy script as well.
-rw-r--r-- | .gitlab-ci.yml | 11 | ||||
-rwxr-xr-x | .tools/deploy.sh | 34 | ||||
-rwxr-xr-x | .tools/downloadlib.sh | 2 |
3 files changed, 1 insertions, 46 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 062bd6b3d..1bef11a72 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,17 +55,6 @@ licensecheck: script: - ./.tools/licensecheck.sh -.pages: - stage: test - script: - - ./.tools/deploy.sh - - pwd - artifacts: - paths: - - public - only: - - master - ok_job: stage: ok script: diff --git a/.tools/deploy.sh b/.tools/deploy.sh deleted file mode 100755 index 1b42d445b..000000000 --- a/.tools/deploy.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -source ./.tools/init.sh - -clientdata_init - -aptget_update -aptget_install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python -rm -rf tools -gitclone https://gitlab.com/TMW2 evol-tools.git tools - -cd clientdata -rm -rf public -mkdir public - -cd .. - -rm -rf music -gitclone https://gitlab.com/TMW2 evol-music.git music - -cd tools/update - -./createnew.sh -check_error $? -./create_music.sh -check_error $? - -cp -r upload/* ../../clientdata/public -cd ../../clientdata -gitclone https://gitlab.com/4144 pagesindexgen.git pagesindexgen -cd pagesindexgen -./pagesindexgen.py ../public -check_error $? -ls ../public diff --git a/.tools/downloadlib.sh b/.tools/downloadlib.sh index b9a50d738..bdcccb45d 100755 --- a/.tools/downloadlib.sh +++ b/.tools/downloadlib.sh @@ -6,7 +6,7 @@ export libname="$1_$2" mkdir libdownload cd libdownload rm "${zipname}" -../client-data/.tools/retry.sh wget -O "${zipname}" "https://gitlab.com/simplepackagemanager/spm/builds/artifacts/$1/download?job=${libname}" +../client-data/.tools/retry.sh wget -O "${zipname}" "https://gitlab.com/themanaworld/manaplus/spm/builds/artifacts/$1/download?job=${libname}" unzip "${zipname}" cp -r "bin/${libname}" .. cd .. |