mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
edce01c336
- project tag: - `veloren/veloren`: for the veloren repo only - `veloren/*`: for projects thats are in the veloren namespace, e.g. usefull for smaller projects that dont have their own tag - `*/*` for projects by 3rd parties, e.g. personal projects - trusted tag: - `owned`: The runner is hosted on veloren hardware - `trusted`: The runner is hosted by a private person, trusted by the veloren devs - NONE: if no special trust is given in a runner - check/build tag: - `check`: a job only performs a check and NO executable is build for users - `build`: the job contains atleast 1 executable that can be run by users - NONE: neither a check nor a executable is build, e.g. usefull for pages or meta jobs - publish tag: - `publish`: this job produces a artifact that is automatically pushed to users - NONE: no artifact is pushed automatically to users - pin tags: - `benchmark`: pin a runner to a specific job for the cause of benchmarks - `veloren/*:macos`: runs on a native macos runner ONLY, this needs to be a modified project tag, as otherwise also normal checks would run on this runner. - NONE: no runner is pinned
205 lines
6.9 KiB
YAML
205 lines
6.9 KiB
YAML
unittests:
|
|
extends: .recompile-branch
|
|
stage: build
|
|
image: registry.gitlab.com/veloren/veloren-docker-ci/cache/quality:${CACHE_IMAGE_TAG}
|
|
tags: ["veloren/veloren", "check"]
|
|
variables:
|
|
GIT_DEPTH: 9999999999999
|
|
script:
|
|
- ln -s /dockercache/target target
|
|
- cat ./.gitlab/scripts/unittest.sh
|
|
- source ./.gitlab/scripts/unittest.sh
|
|
retry:
|
|
max: 2
|
|
|
|
translation:
|
|
extends: .release
|
|
stage: build
|
|
image: registry.gitlab.com/veloren/veloren-docker-ci/cache/quality:${CACHE_IMAGE_TAG}
|
|
tags: ["veloren/veloren", "check"]
|
|
script:
|
|
- ln -s /dockercache/target target
|
|
- cat ./.gitlab/scripts/translation.sh
|
|
- source ./.gitlab/scripts/translation.sh
|
|
- TAGUUID="Z$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)" || echo "ignore this returncode, dont ask me why, it works"
|
|
- echo $TAGUUID # Use TAGUUID to mitigate https://xkcd.com/327/ in the branch name
|
|
- echo 'SET veloren.timestamp = "'"$(git show --no-patch --no-notes --pretty='%cd' HEAD)"'";' > upload.sql
|
|
- echo "SET veloren.branch = \$${TAGUUID}\$${CI_COMMIT_REF_NAME}\$${TAGUUID}\$;" >> upload.sql
|
|
- echo "SET veloren.sha = \$${TAGUUID}\$${CI_COMMIT_SHA}\$${TAGUUID}\$;" >> upload.sql
|
|
- echo '\copy translations ("country_code", "file_name", "translation_key", "status", "git_commit") from '"'translation_analysis.csv' csv header" >> upload.sql
|
|
- cat upload.sql
|
|
- PGPASSWORD="${CIDBPASSWORD}" PGSSLROOTCERT="./.gitlab/ci-db.crt" psql "sslmode=verify-ca host=grafana.veloren.net port=15432 dbname=translations" -U hgseehzjtsrghtjdcqw -f upload.sql;
|
|
retry:
|
|
max: 2
|
|
|
|
benchmarks:
|
|
extends: .release
|
|
stage: build
|
|
image: registry.gitlab.com/veloren/veloren-docker-ci/cache/bench:${CACHE_IMAGE_TAG}
|
|
tags: ["veloren/veloren", "check", "benchmark"]
|
|
script:
|
|
- unset DISABLE_GIT_LFS_CHECK
|
|
- ln -s /dockercache/target target
|
|
- cat ./.gitlab/scripts/benchmark.sh
|
|
- source ./.gitlab/scripts/benchmark.sh
|
|
- TAGUUID="Z$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)" || echo "ignore this returncode, dont ask me why, it works"
|
|
- echo $TAGUUID # Use TAGUUID to mitigate https://xkcd.com/327/ in the branch name
|
|
- echo 'SET veloren.timestamp = "'"$(git show --no-patch --no-notes --pretty='%cd' HEAD)"'";' > upload.sql
|
|
- echo "SET veloren.branch = \$${TAGUUID}\$${CI_COMMIT_REF_NAME}\$${TAGUUID}\$;" >> upload.sql
|
|
- echo "SET veloren.sha = \$${TAGUUID}\$${CI_COMMIT_SHA}\$${TAGUUID}\$;" >> upload.sql
|
|
- find target/criterion -wholename "*new/*.csv" -exec echo '\copy benchmarks ("group", "function", "value", throughput_num, throughput_type, sample_measured_value, unit, iteration_count) from '"'{}' csv header" >> upload.sql \;
|
|
- cat upload.sql
|
|
- PGPASSWORD="${CIDBPASSWORD}" PGSSLROOTCERT="./.gitlab/ci-db.crt" psql "sslmode=verify-ca host=grafana.veloren.net port=15432 dbname=benchmarks" -U hgseehzjtsrghtjdcqw -f upload.sql;
|
|
retry:
|
|
max: 2
|
|
|
|
# Coverage is needed on master for the README.md badge to work
|
|
# tmp remove simd as it doesnt work with tarpaulin: https://github.com/rust-lang/rust/issues/77529
|
|
coverage:
|
|
extends: .release
|
|
stage: build
|
|
image: registry.gitlab.com/veloren/veloren-docker-ci/cache/tarpaulin:${CACHE_IMAGE_TAG}
|
|
tags: ["veloren/veloren", "check"]
|
|
script:
|
|
- ln -s /dockercache/target target
|
|
- cat ./.gitlab/scripts/coverage.sh
|
|
- source ./.gitlab/scripts/coverage.sh
|
|
retry:
|
|
max: 2
|
|
|
|
#linux, windows, macos builds here as template
|
|
.tlinux:
|
|
image: registry.gitlab.com/veloren/veloren-docker-ci/cache/release-linux:${CACHE_IMAGE_TAG}
|
|
script:
|
|
- ln -s /dockercache/target target
|
|
- cat ./.gitlab/scripts/linux.sh
|
|
- source ./.gitlab/scripts/linux.sh
|
|
- cp -r target/release/veloren-server-cli $CI_PROJECT_DIR
|
|
- cp -r target/release/veloren-voxygen $CI_PROJECT_DIR
|
|
artifacts:
|
|
paths:
|
|
- veloren-server-cli
|
|
- veloren-voxygen
|
|
- assets/
|
|
- LICENSE
|
|
expire_in: 1 week
|
|
|
|
.twindows:
|
|
image: registry.gitlab.com/veloren/veloren-docker-ci/cache/release-windows:${CACHE_IMAGE_TAG}
|
|
script:
|
|
- ln -s /dockercache/target target
|
|
- cat ./.gitlab/scripts/windows.sh
|
|
- source ./.gitlab/scripts/windows.sh
|
|
- cp -r target/x86_64-pc-windows-gnu/release/veloren-server-cli.exe $CI_PROJECT_DIR
|
|
- cp -r target/x86_64-pc-windows-gnu/release/veloren-voxygen.exe $CI_PROJECT_DIR
|
|
- cp /usr/lib/gcc/x86_64-w64-mingw32/7.3-posix/libgcc_s_seh-1.dll $CI_PROJECT_DIR
|
|
- cp /usr/lib/gcc/x86_64-w64-mingw32/7.3-posix/libstdc++-6.dll $CI_PROJECT_DIR
|
|
- cp /usr/x86_64-w64-mingw32/lib/libwinpthread-1.dll $CI_PROJECT_DIR
|
|
artifacts:
|
|
paths:
|
|
- veloren-server-cli.exe
|
|
- veloren-voxygen.exe
|
|
- assets/
|
|
- LICENSE
|
|
- libgcc_s_seh-1.dll
|
|
- libstdc++-6.dll
|
|
- libwinpthread-1.dll
|
|
expire_in: 1 week
|
|
|
|
.tmacos:
|
|
tags: ["veloren-macos"]
|
|
before_script:
|
|
- source $HOME/.cargo/env
|
|
- cargo --version
|
|
- export DISABLE_GIT_LFS_CHECK=true
|
|
- export VELOREN_ASSETS="$(pwd)/assets"
|
|
- echo "VELOREN_ASSETS=$VELOREN_ASSETS"
|
|
- export RUSTFLAGS="-D warnings"
|
|
script:
|
|
- export MACOSX_DEPLOYMENT_TARGET="10.13"
|
|
- export VELOREN_USERDATA_STRATEGY=executable
|
|
- cargo build --release --no-default-features --features default-publish
|
|
- cp -r target/release/veloren-server-cli $CI_PROJECT_DIR
|
|
- cp -r target/release/veloren-voxygen $CI_PROJECT_DIR
|
|
artifacts:
|
|
paths:
|
|
- veloren-server-cli
|
|
- veloren-voxygen
|
|
- assets/
|
|
- LICENSE
|
|
expire_in: 1 week
|
|
|
|
# e.g. post merge and scheduled builds
|
|
.tmacos-master-cache:
|
|
cache:
|
|
key: "macos-master-cache"
|
|
paths:
|
|
- target/
|
|
|
|
# e.g. optional builds from MRs
|
|
.tmacos-mr-cache:
|
|
cache:
|
|
key: "macos-mr-cache"
|
|
paths:
|
|
- target/
|
|
|
|
# build on release or master
|
|
linux:
|
|
extends:
|
|
- .tlinux
|
|
- .release
|
|
tags: ["veloren/veloren", "build", "publish", "trusted"]
|
|
|
|
windows:
|
|
extends:
|
|
- .twindows
|
|
- .release
|
|
tags: ["veloren/veloren", "build", "publish", "trusted"]
|
|
|
|
macos:
|
|
extends:
|
|
- .tmacos
|
|
- .release
|
|
- .tmacos-master-cache
|
|
tags: ["veloren/veloren:macos", "build", "publish", "trusted"]
|
|
|
|
# build on schedule quickfix till airshipper 0.5
|
|
air-linux:
|
|
extends:
|
|
- .tlinux
|
|
- .release-nightly-tmp-fix-airshipper
|
|
tags: ["veloren/veloren", "build", "publish", "trusted"]
|
|
|
|
air-windows:
|
|
extends:
|
|
- .twindows
|
|
- .release-nightly-tmp-fix-airshipper
|
|
tags: ["veloren/veloren", "build", "publish", "trusted"]
|
|
|
|
air-macos:
|
|
extends:
|
|
- .tmacos
|
|
- .release-nightly-tmp-fix-airshipper
|
|
- .tmacos-master-cache
|
|
tags: ["veloren/veloren:macos", "build", "publish", "trusted"]
|
|
|
|
# if NOT release or master, allow optional builds
|
|
opt-linux:
|
|
extends:
|
|
- .tlinux
|
|
- .optional-release
|
|
tags: ["veloren/veloren", "build"]
|
|
|
|
opt-windows:
|
|
extends:
|
|
- .twindows
|
|
- .optional-release
|
|
tags: ["veloren/veloren", "build"]
|
|
|
|
opt-macos:
|
|
extends:
|
|
- .tmacos
|
|
- .optional-release
|
|
- .tmacos-mr-cache
|
|
tags: ["veloren/veloren:macos", "build"]
|