23 lines
		
	
	
		
			615 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			615 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: build-helloworld-vita
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [ master ]
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - name: Checkout
 | 
						|
        uses: actions/checkout@v2
 | 
						|
      - name: Install Vita Toolchain
 | 
						|
        run: |
 | 
						|
          sudo apt-get install cmake
 | 
						|
          git clone https://github.com/vitasdk/vdpm
 | 
						|
          cd vdpm
 | 
						|
          ./bootstrap-vitasdk.sh
 | 
						|
          export VITASDK=/usr/local/vitasdk
 | 
						|
          export PATH=$VITASDK/bin:$PATH
 | 
						|
          ./install-all.sh
 | 
						|
      - name: Install Libraries
 | 
						|
        run: |
 | 
						|
          echo "Installing engine libs"
 | 
						|
          git submodule update --init --recursive |