aboutsummaryrefslogtreecommitdiff
path: root/.github/actions/setup-rust/action.yaml
blob: 67c0c8db5459559b168964ca353ac03a82ec8eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Setup Rust
description: Setup Rust
inputs:
  target:
    description: toolchain target triple
    required: false
  save-cache:
    description: Whether to save the Rust cache
    required: false
    default: 'false'
runs:
  using: composite
  steps:
    - name: Install Rust
      id: toolchain
      uses: dtolnay/rust-toolchain@stable
      with:
        target: ${{ inputs.target }}
        toolchain: stable
        components: clippy, rustfmt

    - name: Cache Rust Dependencies
      uses: Swatinem/rust-cache@v2
      with:
        save-if: ${{ inputs.save-cache }}
        prefix-key: v0-rust-deps
        shared-key: ${{ inputs.target }}

    - name: Cargo config.toml
      shell: bash
      run: echo '{}' | npx -y mustache - .cargo/config.toml.mustache .cargo/config.toml

    - name: Restore cached Prisma codegen
      id: cache-prisma-restore
      uses: actions/cache/restore@v3
      with:
        key: prisma-1-${{ runner.os }}-${{ hashFiles('./core/prisma/*', './Cargo.toml') }}
        path: crates/prisma/src/**/*.rs

    - name: Generate Prisma client
      working-directory: core
      if: ${{ steps.cache-prisma-restore.outputs.cache-hit != 'true' }}
      shell: bash
      run: cargo prisma generate

    - name: Save Prisma codegen
      id: cache-prisma-save
      if: ${{ inputs.save-cache == 'true' }}
      uses: actions/cache/save@v3
      with:
        key: ${{ steps.cache-prisma-restore.outputs.cache-primary-key }}
        path: crates/prisma/src/**/*.rs