bf4cdf6245
This fixes cache propagation delay issues with Blacksmith's distributed cache. The previous implementation used separate save/restore actions with fail-on-cache-miss: true, which failed when the cache wasn't immediately available after being saved by the Prepare job. The new implementation uses actions/cache@v4 (combined save/restore) with a fallback to do the checkout if cache miss, matching the pattern used by cache-build and cache-db which don't have this issue. Changes: - Refactored cache-checkout action to use actions/cache@v4 - Added fallback checkout step when cache miss occurs - Removed mode input (no longer needed) - Updated all workflows to use the simplified cache-checkout action Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
# This is just to test this file
|
|
name: Build
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Docs
|
|
permissions:
|
|
contents: read
|
|
runs-on: blacksmith-2vcpu-ubuntu-2404
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: .github
|
|
- uses: ./.github/actions/cache-checkout
|
|
- name: Cache Docs build
|
|
uses: actions/cache@v4
|
|
id: cache-docs-build
|
|
env:
|
|
cache-name: docs-build
|
|
key-1: ${{ hashFiles('yarn.lock') }}
|
|
key-2: ${{ hashFiles('docs/**.*', '!**/node_modules') }}
|
|
with:
|
|
path: |
|
|
**/docs/**
|
|
key: ${{ env.cache-name }}-${{ env.key-1 }}-${{ env.key-2 }}
|
|
- name: Run build
|
|
if: steps.cache-docs-build.outputs.cache-hit != 'true'
|
|
working-directory: docs
|
|
run: |
|
|
export NODE_OPTIONS="--max_old_space_size=8192"
|
|
npm install -g mintlify@4.2.87
|
|
mintlify dev &
|
|
sleep 5 # Let it run for 5 seconds
|
|
kill $!
|
|
shell: bash
|