diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-06-18 01:07:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-06-18 01:07:26 +0300 |
commit | 5e11fb3595e752e37557e3e1a1a0590e033daad3 (patch) | |
tree | c0f009ae5e0721352c2b3ca754fc9912a981d942 /tools/ci/jobs | |
parent | 6057e8d87c5716caaff856d17c2cf61fbd5dcfcf (diff) | |
download | manaverse-5e11fb3595e752e37557e3e1a1a0590e033daad3.tar.gz manaverse-5e11fb3595e752e37557e3e1a1a0590e033daad3.tar.bz2 manaverse-5e11fb3595e752e37557e3e1a1a0590e033daad3.tar.xz manaverse-5e11fb3595e752e37557e3e1a1a0590e033daad3.zip |
Fix stats site compilation.
Also add build date/time into commit version file.
Diffstat (limited to 'tools/ci/jobs')
-rwxr-xr-x | tools/ci/jobs/pages.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/ci/jobs/pages.sh b/tools/ci/jobs/pages.sh index b710483b3..720a3f917 100755 --- a/tools/ci/jobs/pages.sh +++ b/tools/ci/jobs/pages.sh @@ -13,7 +13,8 @@ mkdir -p ../public/version cp ./logs/gcc-?.* ../public/gcov || exit 1 cp ./logs/gcc-?_SDL2.* ../public/gcov || exit 1 -echo "Url: $CI_PROJECT_URL" >../public/version/commit.txt +echo date >../public/version/commit.txt +echo "Url: $CI_PROJECT_URL" >>../public/version/commit.txt echo "Ref name: $CI_BUILD_REF_NAME" >>../public/version/commit.txt echo "Ref: $CI_BUILD_REF" >>../public/version/commit.txt |