18 lines
		
	
	
		
			371 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			371 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
pipeline {
 | 
						|
    agent any
 | 
						|
 | 
						|
    stages {
 | 
						|
        stage('Linux Testing') {
 | 
						|
            steps {
 | 
						|
                sh "cargo test"
 | 
						|
            }
 | 
						|
        }
 | 
						|
        stage('Linux Build') {
 | 
						|
            steps {
 | 
						|
                sh "cargo build --release"
 | 
						|
                archiveArtifacts artifacts: 'target/release/morethantext_web', fingerprint: true
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |