Skip to content

Commit

Permalink
Build shift US on Jenkins (#1113)
Browse files Browse the repository at this point in the history
* build shift us on jenkins

* fix

* fix for real this time

* if sbn dir exists, dont exit
  • Loading branch information
bates64 authored Aug 21, 2023
1 parent a3cdc47 commit 92180a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion tools/splat_ext/pm_sbn.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def split(self, rom_bytes):
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)
Expand Down

0 comments on commit 92180a5

Please sign in to comment.