57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
| name: vab CI
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     paths-ignore:
 | |
|       - "**.md"
 | |
|   pull_request:
 | |
|     paths-ignore:
 | |
|       - "**.md"
 | |
| 
 | |
| jobs:
 | |
|   vab-compiles-v-examples:
 | |
|     runs-on: ubuntu-20.04
 | |
|     if: github.event_name != 'push' || github.event.ref == 'refs/heads/master' || github.event.repository.full_name != 'vlang/v'
 | |
|     timeout-minutes: 121
 | |
|     env:
 | |
|       VAB_FLAGS: --api 30 --build-tools 29.0.0 -v 3
 | |
|     steps:
 | |
|     - uses: actions/setup-java@v2
 | |
|       with:
 | |
|         distribution: 'adopt'
 | |
|         java-version: 8
 | |
| 
 | |
|     - uses: actions/checkout@v2
 | |
|     - name: Build V
 | |
|       run: make && sudo ./v symlink
 | |
| 
 | |
|     - name: Checkout vab
 | |
|       uses: actions/checkout@v2
 | |
|       with:
 | |
|         repository: vlang/vab
 | |
|         path: vab
 | |
| 
 | |
|     - name: Build vab
 | |
|       run: |
 | |
|         cd vab
 | |
|         v -g vab.v
 | |
|         sudo ln -s $(pwd)/vab /usr/local/bin/vab        
 | |
| 
 | |
|     - name: Run tests
 | |
|       run: v test vab
 | |
| 
 | |
|     - name: Run vab --help
 | |
|       run: vab --help
 | |
| 
 | |
|     - name: Run vab doctor
 | |
|       run: vab doctor
 | |
| 
 | |
|     - name: Build graphical V examples as APK
 | |
|       run: |
 | |
|         declare -a v_examples=('flappylearning' '2048' 'fireworks' 'tetris' 'sokol/particles' 'sokol/drawing.v' 'sokol/freetype_raven.v' 'gg/polygons.v' 'gg/raven_text_rendering.v' 'gg/rectangles.v' 'gg/stars.v' 'gg/worker_thread.v')
 | |
|         mkdir apks
 | |
|         for example in "${v_examples[@]}"; do
 | |
|           safe_name=$(echo "$example" | sed 's%/%-%' | sed 's%\.%-%' )
 | |
|           vab examples/$example -o apks/$safe_name.apk
 | |
|         done        
 |