mirror of https://github.com/n64decomp/mk64.git
parent
9b0646fde0
commit
98369fc526
|
|
@ -1,10 +1,10 @@
|
|||
def totalProgBadge = addEmbeddableBadgeConfiguration(id: "totalProgress", subject: "Total Progress")
|
||||
def gameCodeProgBadge = addEmbeddableBadgeConfiguration(id: "codeProgress", subject: "Game Code Progress")
|
||||
def audioProgBadge = addEmbeddableBadgeConfiguration(id: "audioProgress", subject: "Audio Code Progress")
|
||||
def totalProgBadge = addEmbeddableBadgeConfiguration(id: "totalProgress", subject: "Total Progress", color: "7d0000")
|
||||
def gameCodeProgBadge = addEmbeddableBadgeConfiguration(id: "codeProgress", subject: "Game Code Progress", color: "7d0000")
|
||||
def audioProgBadge = addEmbeddableBadgeConfiguration(id: "audioProgress", subject: "Audio Code Progress", color: "7d0000")
|
||||
|
||||
def bytesToDecompile = addEmbeddableBadgeConfiguration(id: "bytesLeft", subject: "Remaining Decompilable Bytes")
|
||||
def m2cFuncs = addEmbeddableBadgeConfiguration(id: "m2c", subject: "Remaining Functions")
|
||||
def nonmatchingFuncs = addEmbeddableBadgeConfiguration(id: "nonmatching", subject: "Non-matching Functions")
|
||||
def bytesToDecompile = addEmbeddableBadgeConfiguration(id: "bytesLeft", subject: "Remaining Decompilable Bytes", color: "7d0000")
|
||||
def m2cFuncs = addEmbeddableBadgeConfiguration(id: "m2c", subject: "Remaining Functions", color: "7d0000")
|
||||
def nonmatchingFuncs = addEmbeddableBadgeConfiguration(id: "nonmatching", subject: "Non-matching Functions", color: "7d0000")
|
||||
|
||||
pipeline {
|
||||
agent any
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@
|
|||
|
||||
[](https://ci.valandil.ca/job/mk64/job/master/)
|
||||
[](https://ci.valandil.ca/job/mk64/job/master/)
|
||||
[](https://ci.valandil.ca/job/mk64/job/master/)
|
||||
[](https://ci.valandil.ca/job/mk64/job/master/)
|
||||
|
||||
C Files left: ~23 out of 35
|
||||
# Mario Kart 64
|
||||
|
||||
|
|
|
|||
|
|
@ -280,7 +280,7 @@ if args.format == 'shield-json':
|
|||
"color": 'yellow',
|
||||
}))
|
||||
elif args.format == 'totalBadge':
|
||||
print(str(round(((mk64Code_size - text_size) * mk64Code_size) * 100, 2))+"%")
|
||||
print(str(round(((mk64Code_size - text_size) / mk64Code_size) * 100, 2))+"%")
|
||||
elif args.format == 'gameBadge':
|
||||
print(str(round(srcPct, 2))+"%")
|
||||
elif args.format == 'audioBadge':
|
||||
|
|
|
|||
Loading…
Reference in New Issue