動かざることバグの如し

近づきたいよ 君の理想に

Github Actionsで容量不足問題

Github Actionsで容量不足問題

thr3a/faster-whisper-webuiでいつものように

buildx failed with: ERROR: failed to solve: failed to create temp dir: mkdir /tmp/containerd-mount3151666229: no space left on device

原因

ディスク容量が足りない

解決策

https://github.com/jlumbroso/free-disk-space

Stepの最初に jlumbroso/free-disk-space@main を入れるだけ

name: Free Disk Space (Ubuntu)
on: push

jobs:
  free-disk-space:
    runs-on: ubuntu-latest
    steps:
    - name: Free Disk Space (Ubuntu)
      uses: jlumbroso/free-disk-space@main
      with:
        # this might remove tools that are actually needed,
        # if set to "true" but frees about 6 GB
        tool-cache: false
        # all of these default to true, but feel free to set to
        # "false" if necessary for your workflow
        android: true
        dotnet: true
        haskell: true
        large-packages: true
        docker-images: true
        swap-storage: true