2023-07-22 05:14:10 +02:00
|
|
|
# This file is a template, and might need editing before it works on your project.
|
|
|
|
# You can copy and paste this template into a new `.gitlab-ci.yml` file.
|
|
|
|
# You should not add this template to an existing `.gitlab-ci.yml` file by using the `include:` keyword.
|
|
|
|
#
|
|
|
|
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
|
|
# This specific template is located at:
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Nodejs.gitlab-ci.yml
|
|
|
|
|
|
|
|
# Official framework image. Look for the different tagged releases at:
|
|
|
|
# https://hub.docker.com/r/library/node/tags/
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
2023-08-03 07:59:24 +02:00
|
|
|
- deploy
|
2023-07-22 05:14:10 +02:00
|
|
|
|
|
|
|
testCommit:
|
|
|
|
stage: build
|
2023-09-09 22:08:29 +02:00
|
|
|
image: node:20.5
|
2023-08-03 07:59:24 +02:00
|
|
|
# Pick zero or more services to be used on all builds.
|
|
|
|
# Only needed when using a docker container to run your tests in.
|
|
|
|
# Check out: https://docs.gitlab.com/ee/ci/services/index.html
|
|
|
|
services:
|
|
|
|
- postgres:15
|
|
|
|
- redis
|
|
|
|
variables:
|
|
|
|
POSTGRES_PASSWORD: test
|
|
|
|
# POSTGRES_DB: $POSTGRES_DB
|
|
|
|
# POSTGRES_USER: $POSTGRES_USER
|
|
|
|
# POSTGRES_PASSWORD: $POSTGRES_PASSWORD
|
|
|
|
# POSTGRES_HOST_AUTH_METHOD: trust
|
|
|
|
script:
|
2023-08-12 17:29:19 +02:00
|
|
|
- apt-get update && apt-get install -y git wget curl build-essential python3 musl
|
2023-08-10 02:19:05 +02:00
|
|
|
- curl https://sh.rustup.rs -sSf | sh -s -- -y
|
2023-08-10 02:22:24 +02:00
|
|
|
- source "$HOME/.cargo/env"
|
2023-08-12 17:29:19 +02:00
|
|
|
- ln -s /lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1
|
2023-08-02 08:28:32 +02:00
|
|
|
- cp .config/ci.yml .config/default.yml
|
|
|
|
- corepack enable
|
|
|
|
- corepack prepare pnpm@latest --activate
|
2023-07-22 05:14:10 +02:00
|
|
|
- pnpm i --frozen-lockfile
|
2023-07-30 23:15:33 +02:00
|
|
|
- pnpm run build:debug
|
2023-07-22 05:14:10 +02:00
|
|
|
- pnpm run migrate
|
2023-08-03 07:59:24 +02:00
|
|
|
cache:
|
|
|
|
key: build
|
|
|
|
policy: pull-push
|
|
|
|
when: on_success
|
|
|
|
paths:
|
|
|
|
- node_modules/
|
|
|
|
- packages/*/node_modules/
|
|
|
|
- packages/backend/native-utils/node_modules/
|
2023-07-22 05:14:10 +02:00
|
|
|
only:
|
|
|
|
- main
|
|
|
|
- beta
|
|
|
|
- develop
|
|
|
|
- /^feature\/.*$/
|
|
|
|
|
2023-08-03 07:59:24 +02:00
|
|
|
getImageTag:
|
|
|
|
stage: deploy
|
|
|
|
image: busybox
|
|
|
|
script:
|
|
|
|
- |
|
|
|
|
if test -n "$CI_COMMIT_TAG"; then
|
|
|
|
tag="$CI_COMMIT_TAG"
|
|
|
|
elif test "$CI_COMMIT_BRANCH" == "main"; then
|
|
|
|
tag="latest"
|
|
|
|
else
|
|
|
|
tag="$CI_COMMIT_BRANCH"
|
|
|
|
fi
|
|
|
|
- echo "REGISTRY_PUSH_TAG=$tag" | tee build.env
|
|
|
|
# parse tag to the build and merge jobs.
|
|
|
|
# See: https://docs.gitlab.com/ee/ci/variables/#pass-an-environment-variable-to-another-job
|
|
|
|
artifacts:
|
|
|
|
reports:
|
|
|
|
dotenv: build.env
|
|
|
|
only:
|
|
|
|
- main
|
|
|
|
- beta
|
|
|
|
- tags
|
|
|
|
|
|
|
|
dockerBuild:
|
|
|
|
stage: deploy
|
|
|
|
needs: ["getImageTag"]
|
2023-08-03 01:25:48 +02:00
|
|
|
image:
|
2023-08-03 09:01:59 +02:00
|
|
|
name: gcr.io/kaniko-project/executor:debug
|
2023-08-03 01:25:48 +02:00
|
|
|
entrypoint: [""]
|
2023-07-30 08:57:33 +02:00
|
|
|
script:
|
2023-08-03 01:25:48 +02:00
|
|
|
- /kaniko/executor
|
|
|
|
--context "${CI_PROJECT_DIR}"
|
|
|
|
--dockerfile "${CI_PROJECT_DIR}/Dockerfile"
|
2023-08-03 07:59:24 +02:00
|
|
|
--destination "${CI_REGISTRY_IMAGE}:${REGISTRY_PUSH_TAG}"
|
2023-07-30 08:57:33 +02:00
|
|
|
only:
|
|
|
|
- main
|
|
|
|
- beta
|
2023-08-09 23:36:03 +02:00
|
|
|
- tags
|