GitLab CI

以下示例展示了如何将 Turborepo 与 GitLab CI 结合使用。

¥The following example shows how to use Turborepo with GitLab CI.

对于给定的根 package.json

¥For a given root package.json:

./package.json
{
  "name": "my-turborepo",
  "scripts": {
    "build": "turbo run build",
    "test": "turbo run test"
  },
  "devDependencies": {
    "turbo": "latest"
  }
}

以及 turbo.json

¥And a turbo.json:

Turborepo logo
./turbo.json
{
  "$schema": "https://turbo.nodejs.cn/schema.json",
  "tasks": {
    "build": {
      "outputs": [".svelte-kit/**"],
      "dependsOn": ["^build"]
    },
    "test": {
      "dependsOn": ["^build"]
    }
  }
}

在你的代码库中创建一个名为 .gitlab-ci.yml 的文件,其中包含以下内容:

¥Create a file called .gitlab-ci.yml in your repository with the following contents:

.gitlab-ci.yml
image: node:latest
stages:
  - build
build:
  stage: build
  before_script:
    - curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm@6.32.2
    - pnpm config set store-dir .pnpm-store
  script:
    - pnpm install
    - pnpm build
    - pnpm test
  cache:
    key:
      files:
        - pnpm-lock.yaml
    paths:
      - .pnpm-store

更多有关 GitLab CI 集成的信息,请访问 pnpm 文档部分,查看 此处

¥For more information visit the pnpm documentation section on GitLab CI integration, view it here

远程缓存

¥Remote Caching

要使用远程缓存,请检索提供程序的远程缓存的团队和令牌。在本例中,我们将使用 Vercel 远程缓存

¥To use Remote Caching, retrieve the team and token for the Remote Cache for your provider. In this example, we'll use Vercel Remote Cache:

  • TURBO_TOKEN - 用于访问远程缓存的 Bearer 令牌

    ¥TURBO_TOKEN - The Bearer token to access the Remote Cache

  • TURBO_TEAM - 代码库所属账户

    ¥TURBO_TEAM - The account to which the repository belongs

要使用 Vercel 远程缓存,你可以通过以下几个步骤获取以下变量的值:

¥To use Vercel Remote Caching, you can get the value of these variables in a few steps:

  1. Vercel 仪表板 中为你的账户创建一个作用域访问令牌

    ¥Create a Scoped Access Token to your account in the Vercel Dashboard

Vercel Access Tokens

将值复制到安全的地方。你稍后会需要它。

¥Copy the value to a safe place. You'll need it in a moment.

  1. 转到 GitLab 仓库设置,然后点击“设置”选项卡,然后点击“CI/CD”选项卡。创建一个名为 TURBO_TOKEN 的新变量,并输入你的作用域访问令牌的值。

    ¥Go to your GitLab repository settings and click on the Settings and then CI/CD tab. Create a new variable called TURBO_TOKEN and enter the value of your Scoped Access Token.

GitLab CI Variables

GitLab CI Create Variable

  1. 创建第二个名为 TURBO_TEAM 的 secret,并输入 你的团队 URL

    ¥Make a second secret called TURBO_TEAM and enter your Team URL.

远程缓存现在可以在你的 GitLab 工作流程中运行。

¥Remote Caching will now be operational in your GitLab workflows.