mirror of
				https://github.com/Xahau/xahaud.git
				synced 2025-11-04 10:45:50 +00:00 
			
		
		
		
	PROBLEM: Setting cache_dir='~/.ccache' explicitly stores the LITERAL tilde in ccache.conf, which might not expand properly. SOLUTION: Don't set cache_dir at all - let ccache use its default - Linux default: ~/.ccache - ccache will expand the tilde correctly when using default - Only configure max_size, hash_dir, compiler_check - Remove CCACHE_DIR env var (not needed with default) This should fix the issue where ccache runs but creates no cache files.
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: 'Configure ccache'
 | 
						|
description: 'Sets up ccache with consistent configuration'
 | 
						|
 | 
						|
inputs:
 | 
						|
  cache_dir:
 | 
						|
    description: 'Path to ccache directory'
 | 
						|
    required: false
 | 
						|
    default: '~/.ccache'
 | 
						|
  max_size:
 | 
						|
    description: 'Maximum cache size'
 | 
						|
    required: false
 | 
						|
    default: '2G'
 | 
						|
  hash_dir:
 | 
						|
    description: 'Whether to include directory paths in hash'
 | 
						|
    required: false
 | 
						|
    default: 'true'
 | 
						|
  compiler_check:
 | 
						|
    description: 'How to check compiler for changes'
 | 
						|
    required: false
 | 
						|
    default: 'content'
 | 
						|
 | 
						|
runs:
 | 
						|
  using: 'composite'
 | 
						|
  steps:
 | 
						|
    - name: Configure ccache
 | 
						|
      shell: bash
 | 
						|
      run: |
 | 
						|
        # Use ccache's default cache_dir (~/.ccache) - don't override it
 | 
						|
        # This avoids tilde expansion issues when setting it explicitly
 | 
						|
 | 
						|
        # Create cache directory using ccache's default
 | 
						|
        mkdir -p ~/.ccache
 | 
						|
 | 
						|
        # Configure ccache settings (but NOT cache_dir - use default)
 | 
						|
        ccache --set-config=max_size=${{ inputs.max_size }}
 | 
						|
        ccache --set-config=hash_dir=${{ inputs.hash_dir }}
 | 
						|
        ccache --set-config=compiler_check=${{ inputs.compiler_check }}
 | 
						|
 | 
						|
        # Note: Not setting CCACHE_DIR - let ccache use its default (~/.ccache)
 | 
						|
 | 
						|
        # Print config for verification
 | 
						|
        ccache -p
 | 
						|
 | 
						|
        # Zero statistics before the build
 | 
						|
        ccache -z |