You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Often causing the macos-runner when running builds to throw a warning You are running out of disk space. The runner will stop working when the machine runs out of disk space. Free space left: 75 MB and shortly later exit with Unhandled exception. System.IO.IOException: No space left on device : ...
Workflow configuration (please complete the following information):
strategy:
fail-fast: false
matrix:
swift: ["5.10.1"]
os: [macos-latest]
include:
- language: swift
build-mode: manual
# CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Check Disk Space 1
run: df -h
- name: Initialize latest xcode
uses: maxim-lobanov/[email protected]
with:
xcode-version: latest-stable
- name: Check Disk Space 2
run: df -h
- name: Initialize Swift
uses: swift-actions/[email protected]
with:
swift-version: ${{ matrix.swift }}
- name: Check Disk Space 3
run: df -h
- name: Get swift version
run: swift --version
- name: Checkout repository
uses: actions/[email protected]
- name: Check Disk Space 4
run: df -h
The text was updated successfully, but these errors were encountered:
Aaron-Ritter
changed the title
swift-actions/setup-swift is using 10GB of the 17G storage space available in a macos-runner
swift-actions/setup-swift is using 10GB of the 14G storage space available in a macos-runner
Sep 7, 2024
Aaron-Ritter
changed the title
swift-actions/setup-swift is using 10GB of the 14G storage space available in a macos-runner
swift-actions/setup-swift for v5.10.1 is using 10GB of the 14G storage space available in a macos-runner
Sep 7, 2024
Describe the bug
swift-actions/setup-swift is using 10GB of the 14G storage space available in a macos-runner.
Often causing the macos-runner when running builds to throw a warning
You are running out of disk space. The runner will stop working when the machine runs out of disk space. Free space left: 75 MB
and shortly later exit withUnhandled exception. System.IO.IOException: No space left on device :
...Workflow configuration (please complete the following information):
The text was updated successfully, but these errors were encountered: