Some checks failed
		
		
	
	MoreThanText/morethantext/pipeline/head There was a failure building this commit
				
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			592 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			592 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
pipeline {
 | 
						|
    agent any
 | 
						|
 | 
						|
    stages {
 | 
						|
        stage('Rust Testing') {
 | 
						|
            steps {
 | 
						|
                sh "cargo test"
 | 
						|
            }
 | 
						|
        }
 | 
						|
        stage('Linux Build') {
 | 
						|
            steps {
 | 
						|
                sh "cargo build --release"
 | 
						|
            }
 | 
						|
        }
 | 
						|
	stage('Integration Testing') {
 | 
						|
	    steps {
 | 
						|
                sh "pipenv install"
 | 
						|
                sh "pipenv run python -m unittest"
 | 
						|
            }
 | 
						|
	}
 | 
						|
        stage('Archiving') {
 | 
						|
            steps {
 | 
						|
                archiveArtifacts artifacts: 'target/release/morethantext_web', fingerprint: true
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |