mirror of
				https://github.com/GayPizzaSpecifications/pork.git
				synced 2025-11-03 17:39:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			567 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			567 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: graal
 | 
						|
on: [push]
 | 
						|
jobs:
 | 
						|
  linux-amd64:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
    - name: Checkout Repository
 | 
						|
      uses: actions/checkout@v3
 | 
						|
    - name: Set up GraalVM
 | 
						|
      uses: graalvm/setup-graalvm@v1
 | 
						|
      with:
 | 
						|
        java-version: '17'
 | 
						|
        distribution: 'graalvm'
 | 
						|
    - name: Build with Gradle
 | 
						|
      uses: gradle/gradle-build-action@v2
 | 
						|
      with:
 | 
						|
        arguments: nativeCompile
 | 
						|
    - name: Archive Pork Executable
 | 
						|
      uses: actions/upload-artifact@v3
 | 
						|
      with:
 | 
						|
        name: pork-linux-amd64
 | 
						|
        path: tool/build/native/nativeCompile/pork
 |