|
stages:
|
|
- build
|
|
|
|
variables:
|
|
GIT_STRATEGY: fetch
|
|
|
|
UNITY_VERSION: 2020.2.2f1
|
|
SRC_DIR: ./game
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- chmod +x ./ci/build.sh
|
|
- ./ci/build.sh $UNITY_VERSION $(pwd)/$SRC_DIR
|
|
artifacts:
|
|
name: $CI_PROJECT_NAME-$CI_PIPELINE_ID
|
|
paths:
|
|
- $SRC_DIR/Build/
|