mirror of https://github.com/n64decomp/mk64.git
This reverts commit a99a739216.
This commit is contained in:
parent
a99a739216
commit
8e5ad3368d
|
|
@ -1,5 +1,3 @@
|
|||
def progressBadge = addEmbeddableBadgeConfiguration(id: "totalProgress", subject: "Total Progress")
|
||||
|
||||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
|
|
@ -22,12 +20,6 @@ pipeline {
|
|||
sh 'make -j4 VERSION=us'
|
||||
}
|
||||
}
|
||||
stage('Update Progress') {
|
||||
steps {
|
||||
progress = sh(script: 'python3 progress.py badge1',returnStdout: true).trim()
|
||||
progressBadge.setStatus(progress)
|
||||
}
|
||||
}
|
||||
}
|
||||
environment {
|
||||
QEMU_IRIX = credentials('qemu-irix')
|
||||
|
|
|
|||
|
|
@ -272,9 +272,6 @@ if args.format == 'csv':
|
|||
str(TotalNonMatchingFunctions), str(TotalMipsToCFunctions)]
|
||||
|
||||
print(",".join(csv_list))
|
||||
elif args.format == 'badge1':
|
||||
print(round(srcPct, 2)+"%")
|
||||
|
||||
elif args.format == 'shield-json':
|
||||
# https://shields.io/endpoint
|
||||
print(json.dumps({
|
||||
|
|
|
|||
Loading…
Reference in New Issue