Build shift US on Jenkins (#1113)

* build shift us on jenkins

* fix

* fix for real this time

* if sbn dir exists, dont exit
This commit is contained in:
Alex Bates 2023-08-21 05:09:17 +01:00 committed by GitHub
parent a3cdc47fb7
commit 92180a52ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -112,6 +112,12 @@ pipeline {
sh 'cat reports/warnings.txt > /var/www/papermar.io/html/reports/warnings.txt'
}
}
stage('Build (shift US)') {
steps {
sh './configure --shift us'
sh 'ninja'
}
}
}
post {
always {

View File

@ -540,7 +540,7 @@ if splat_loaded:
data = rom_bytes[self.rom_start : self.rom_end]
if dir.exists():
raise Exception(f"SBN directory {dir} already exists")
self.warn(f"SBN directory {dir} already exists")
sbn = SBN()
byte_count = sbn.decode(data)