Expliciter les étapes parallèles

This commit is contained in:
Charles P. 2024-09-24 16:29:09 +00:00
parent 5aeb60b162
commit 452b88546e

109
Jenkinsfile vendored
View file

@ -13,28 +13,107 @@ pipeline {
stage('Filtrer les tags pour le routage') { stage('Filtrer les tags pour le routage') {
steps { steps {
script { script {
sh 'osmium tags-filter france-latest.osm.pbf w/highway wa/public_transport=platform wa/railway=platform w/park_ride=yes r/type=restriction r/type=route -o france.osm.bz2 -f pbf,add_metadata=false' sh 'osmium tags-filter france-latest.osm.pbf w/highway wa/public_transport=platform wa/railway=platform w/park_ride=yes r/type=restriction r/type=route -o france.osm.bz2 -f pbf,add_metadata=false -v'
} }
} }
} }
stage('Créer des extraits régionaux/départementaux') { stage('Création des extractions départementales/régionales'){
steps { parallel {
script { stage('76') {
// Trouve tous les fichiers GeoJSON dans le workspace steps {
def geojsonFiles = findFiles(glob: '**/*.geojson') script {
def tasks = [] sh "osmium extract --strategy complete_ways --polygon=76.geojson france.osm.bz2 -o 76.osm.bz2"
// Exécute osmium extract pour chaque fichier GeoJSON en parallèle
geojsonFiles.each { geojsonFile ->
tasks << {
def geojsonName = geojsonFile.name.replace('.geojson', '')
sh "osmium extract --strategy complete_ways --polygon=${geojsonFile.path} france.osm.bz2 -o ${geojsonName}.osm.bz2"
} }
} }
}
// Exécute les tâches en parallèle stage('76-ext') {
parallel tasks steps {
script {
sh "osmium extract --strategy complete_ways --polygon=76-ext.geojson france.osm.bz2 -o 76-ext.osm.bz2"
}
}
}
stage('27.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=27.geojson france.osm.bz2 -o 27.osm.bz2"
}
}
}
stage('27-ext.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=27-ext.geojson france.osm.bz2 -o 27-ext.osm.bz2"
}
}
}
stage('50.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=50.geojson france.osm.bz2 -o 50.osm.bz2"
}
}
}
stage('50-ext.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=50-ext.geojson france.osm.bz2 -o 50-ext.osm.bz2"
}
}
}
stage('61.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=61.geojson france.osm.bz2 -o 61.osm.bz2"
}
}
}
stage('61-ext.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=61-ext.geojson france.osm.bz2 -o 61-ext.osm.bz2"
}
}
}
stage('14.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=14.geojson france.osm.bz2 -o 14.osm.bz2"
}
}
}
stage('14-ext.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=14-ext.geojson france.osm.bz2 -o 14-ext.osm.bz2"
}
}
}
stage('normandie.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=normandie.geojson france.osm.bz2 -o normandie.osm.bz2"
}
}
}
stage('normandie-ext.geojson') {
steps {
script {
sh "osmium extract --strategy complete_ways --polygon=normandie-ext.geojson france.osm.bz2 -o normandie-ext.osm.bz2"
}
}
} }
} }
} }