mirror of https://github.com/ARMmbed/mbed-os.git
				
				
				
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			574 B
		
	
	
	
		
			YAML
		
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			574 B
		
	
	
	
		
			YAML
		
	
	
path_classifiers:
 | 
						|
  docs:
 | 
						|
    - docs
 | 
						|
  test:
 | 
						|
    - "**/TESTS"
 | 
						|
    - "**/UNITTESTS"
 | 
						|
  tools:
 | 
						|
    - tools
 | 
						|
 | 
						|
extraction:
 | 
						|
  cpp:
 | 
						|
    prepare:
 | 
						|
      packages:
 | 
						|
        - ninja-build
 | 
						|
        - python-pip
 | 
						|
    after_prepare:
 | 
						|
      - pip install --user cmake
 | 
						|
      - ls ~/.local/bin
 | 
						|
      - export PATH=~/.local/bin:$PATH
 | 
						|
      - cmake --version
 | 
						|
    configure:
 | 
						|
      command:
 | 
						|
        - cmake -S . -B __build -GNinja -DBUILD_TESTING=ON -DCOVERAGE=OFF -DCMAKE_BUILD_TYPE=Debug
 | 
						|
    index:
 | 
						|
      build_command:
 | 
						|
        - cmake --build __build
 | 
						|
        - cmake --build __build --target test
 |