mirror of
				https://github.com/FreeRTOS/FreeRTOS-Kernel.git
				synced 2025-11-04 02:59:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			599 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			599 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: ESP32C3 Test Execution
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
  workflow_dispatch:
 | 
						|
 | 
						|
jobs:
 | 
						|
  esp32c3-execution:
 | 
						|
    runs-on:
 | 
						|
      - self-hosted
 | 
						|
      - cirunner-type-vm
 | 
						|
      - cirunner-size-micro
 | 
						|
      - cirunner-image-ubuntu-runner-vm
 | 
						|
      - cirunner-hardware-esp32c3
 | 
						|
 | 
						|
    steps:
 | 
						|
      - name: list usb hub devices and status
 | 
						|
        run: uhubctl
 | 
						|
 | 
						|
      - name: disable board
 | 
						|
        run: uhubctl -l 1-1 -p 3 -a off
 | 
						|
 | 
						|
      - name: list usb devices and status
 | 
						|
        run: uhubctl
 | 
						|
 | 
						|
      - name: enable board
 | 
						|
        run: uhubctl -l 1-1 -p 3 -a on      
 | 
						|
 | 
						|
      - name: list usb devices and status
 | 
						|
        run: uhubctl |