mirror of
				https://github.com/XRPLF/clio.git
				synced 2025-11-04 11:55:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			469 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			469 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Build clio
 | 
						|
description: Build clio in build directory
 | 
						|
inputs:
 | 
						|
  target:
 | 
						|
    description: Build target name
 | 
						|
    default: all
 | 
						|
runs:
 | 
						|
  using: composite
 | 
						|
  steps:
 | 
						|
    - name: Get number of threads
 | 
						|
      uses: ./.github/actions/get_number_of_threads
 | 
						|
      id: number_of_threads
 | 
						|
 | 
						|
    - name: Build Clio
 | 
						|
      shell: bash
 | 
						|
      run: |
 | 
						|
        cd build
 | 
						|
        cmake --build . --parallel ${{ steps.number_of_threads.outputs.threads_number }} --target ${{ inputs.target }}
 |