Files
packages/anda/tools/cuda-gcc/update.rhai
T
Gilver 9757df21ad fix(cuda-gcc): Ifcond for GCC version tracking (#4491)
* fix(cuda-gcc): Ifcond for GCC version tracking

* chore: Bump release
2025-04-28 13:14:35 -05:00

8 lines
229 B
Plaintext

import "andax/bump_extras.rhai" as bump;
if labels.branch >= "F42" {
rpm.version(bump::bodhi("gcc14", bump::as_bodhi_ver(labels.branch)));
} else {
rpm.version(bump::bodhi("gcc13", bump::as_bodhi_ver(labels.branch)));
}