Github Action Cache 容器问题

问题描述 投票:0回答:2

我有一个简单的问题,但找不到相关文档(也许这是不可能的) 我如何检索从容器中构建的内容(像这样):

prod-dependencies:
name: Production Dependencies
runs-on: ubuntu-20.04
container: elixir:1.11-alpine
env:
MIX_ENV: prod
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Retrieve Cached Dependencies
uses: actions/cache@v2
id: mix-prod-cache
with:
path: |
${{ github.workspace }}/deps
${{ github.workspace }}/_build
key: PROD-${{ hashFiles('mix.lock') }}
- name: Install Dependencies
if: steps.mix-prod-cache.outputs.cache-hit != 'true'
run: |
apk add build-base rust cargo
mix do local.hex --force, local.rebar --force, deps.get --only prod, deps.compile

我需要在 Alpine 上构建,因为我在 Alpine 上部署,并且一些 C 库对于 Erlang VM 的工作是不同的。

所以这里是我构建依赖项的地方,我想将它们放在缓存中以供后续作业使用,但缓存永远不会被填充。根据 GitHub 文档,安装一个带有容器的卷来检索工件,但我一定想念它的使用。

非常感谢您的帮助。

caching elixir github-actions
2个回答
0
投票

这里是 Elixir 应用程序的 Github 工作流程示例,该应用程序具有使用

action/cache@v2
的 Postgres 数据库。请注意,它定义了 2 个单独的步骤来恢复
deps
_build
目录。在此工作流程中,
mix deps.get
mix compile
步骤始终运行:如果缓存恢复,它们应该执行得非常快。

改编自此工作流程

name: Test

on:
  pull_request:
    branches:
      - develop
    paths-ignore:
      - 'docs/**'
      - '*.md'

jobs:
  test:

    name: Lint and test

    runs-on: ubuntu-18.04

    env:
      MIX_ENV: test

    services:
      db:
        image: postgres:11
        ports: ['5432:5432']
        env:
          POSTGRES_PASSWORD: postgres
        options: >-
          --health-cmd pg_isready
          --health-interval 10s
          --health-timeout 5s
          --health-retries 5

    steps:
      - uses: actions/checkout@v2
      - uses: erlef/setup-elixir@v1
        with:
          otp-version: '23.1.2'
          elixir-version: '1.11.2'

      - name: Configure SSH for private Repos
        uses: webfactory/[email protected]
        with:
          ssh-private-key: ${{ secrets.HEADLESS_PRIV }}

      - name: Restore the deps cache
        uses: actions/cache@v2
        id: deps-cache-restore
        with:
          path: deps
          key: ${{ runner.os }}-deps-mixlockhash-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
          restore-keys: |
            ${{ runner.os }}-deps-

      - name: Restore the _build cache
        uses: actions/cache@v2
        id: build-cache-restore
        with:
          path: _build
          key: ${{ runner.os }}-build-mixlockhash-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
          restore-keys: |
            ${{ runner.os }}-build-

      - name: Get/update Mix dependencies
        run: |
          mix local.hex --force
          mix local.rebar
          mix deps.get

      - name: Compile
        run: mix compile

      - name: Create database
        run: mix ecto.create

      - name: Migrate database
        run: mix ecto.migrate

      - name: Test
        run: mix test

0
投票

我刚刚遇到了同样的问题,缓存在普通运行器中运行良好,但在容器内运行时失败。我在这里找到了答案。摘要:在调用缓存操作之前安装

zstd
包。

© www.soinside.com 2019 - 2024. All rights reserved.