We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Packaging process does not work correctly for RPMs, when dist = all
When running the linux packaging process for RPMS, the VERSION field ends up being set to null, due to a comparison with version < 21.
As shown in this debug output
Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 16ms) Print Message -- SF01 - RPMARCHLIST = [riscv64:null] (self time 33ms) Print Message -- SF02 - Entry = riscv64=null (self time 2ms) Print Message -- SF03 - Entry = null (self time 2ms)
Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 16ms)
Print Message -- SF01 - RPMARCHLIST = [riscv64:null] (self time 33ms)
Print Message -- SF02 - Entry = riscv64=null (self time 2ms)
Print Message -- SF03 - Entry = null (self time 2ms)
Whereas it should look more like this ( from my fixed code )
Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 11ms) Print Message -- SF01 - RPMARCHLIST = [riscv64:riscv64] (self time 24ms) Print Message -- SF02 - Entry = riscv64=riscv64 (self time 3ms) Print Message -- SF03 - Entry.value = riscv64 (self time 1ms)
Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 11ms)
Print Message -- SF01 - RPMARCHLIST = [riscv64:riscv64] (self time 24ms)
Print Message -- SF02 - Entry = riscv64=riscv64 (self time 3ms)
Print Message -- SF03 - Entry.value = riscv64 (self time 1ms)
The text was updated successfully, but these errors were encountered:
steelhead31
No branches or pull requests
Packaging process does not work correctly for RPMs, when dist = all
When running the linux packaging process for RPMS, the VERSION field ends up being set to null, due to a comparison with version < 21.
As shown in this debug output
Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 16ms)
Print Message -- SF01 - RPMARCHLIST = [riscv64:null] (self time 33ms)
Print Message -- SF02 - Entry = riscv64=null (self time 2ms)
Print Message -- SF03 - Entry = null (self time 2ms)
Whereas it should look more like this ( from my fixed code )
Print Message -- SF00 - RPMARCHLIST = [x86_64:x86_64, armv7hl:armv7hl, aarch64:aarch64, ppc64le:ppc64le, s390x:s390x, riscv64:riscv64] (self time 11ms)
Print Message -- SF01 - RPMARCHLIST = [riscv64:riscv64] (self time 24ms)
Print Message -- SF02 - Entry = riscv64=riscv64 (self time 3ms)
Print Message -- SF03 - Entry.value = riscv64 (self time 1ms)
The text was updated successfully, but these errors were encountered: