Making the build work
This commit is contained in:
		
							parent
							
								
									f1907d2169
								
							
						
					
					
						commit
						05d69ea828
					
				| 
						 | 
					@ -12,56 +12,56 @@ pipeline {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    stages {
 | 
					    stages {
 | 
				
			||||||
        stage('Tier 1 - Chicken') {
 | 
					        stage('Chicken') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-chicken'
 | 
					                    sh 'make test-chicken'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 1 - Guile') {
 | 
					        stage('Guile') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-guile'
 | 
					                    sh 'make test-guile'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 1 - Kawa') {
 | 
					        stage('Kawa') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-kawa'
 | 
					                    sh 'make test-kawa'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 1 - Sagittarius') {
 | 
					        stage('Sagittarius') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-sagittarius'
 | 
					                    sh 'make test-sagittarius'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 1 - Racket') {
 | 
					        stage('Racket') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-racket'
 | 
					                    sh 'make test-racket'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 2 - Cyclone') {
 | 
					        stage('Cyclone') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-cyclone'
 | 
					                    sh 'make test-cyclone'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 2 - Gambit') {
 | 
					        stage('Gambit') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-gambit'
 | 
					                    sh 'make test-gambit'
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        stage('Tier 2 - STklos') {
 | 
					        stage('STklos') {
 | 
				
			||||||
            steps {
 | 
					            steps {
 | 
				
			||||||
                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
					                catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
 | 
				
			||||||
                    sh 'make test-stklos'
 | 
					                    sh 'make test-stklos'
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -26,7 +26,6 @@ else
 | 
				
			||||||
        --tag ${tag}:latest \
 | 
					        --tag ${tag}:latest \
 | 
				
			||||||
        .
 | 
					        .
 | 
				
			||||||
    docker run \
 | 
					    docker run \
 | 
				
			||||||
        -it \
 | 
					 | 
				
			||||||
        -e CHICKEN_INCLUDE_PATH=/workdir/retropikzel \
 | 
					        -e CHICKEN_INCLUDE_PATH=/workdir/retropikzel \
 | 
				
			||||||
        -v ${PWD}:/workdir:z \
 | 
					        -v ${PWD}:/workdir:z \
 | 
				
			||||||
        ${tag}:latest \
 | 
					        ${tag}:latest \
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue