1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-10-17 12:09:55 +00:00

Fail the Jenkins build if there's any unused asm (#222)

* Check for unused asm

* Deleting some unused asm
This commit is contained in:
Ethan Roseman 2020-06-23 13:59:59 -04:00 committed by GitHub
commit 054f6dc04d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 48 deletions

5
Jenkinsfile vendored
View file

@ -2,6 +2,11 @@ pipeline {
agent any
stages {
stage('Check for unused asm') {
steps {
sh './tools/find_unused_asm.sh'
}
}
stage('Setup') {
steps {
echo 'Setting up...'