Skip to content

Commit

Permalink
Add riscv to architecture ALL for RPMS
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Apr 8, 2024
1 parent 543f7a1 commit 47623c3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion linux/jdk/redhat/src/main/packaging/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ echo "DEBUG: building RH arch ${buildArch} with jdk version ${buildVersion}"
if [ "${buildArch}" != "all" ]; then
targets=${buildArch}
elif [ ${buildVersion} -gt 20 ]; then
targets="x86_64 ppc64le aarch64"
targets="x86_64 ppc64le aarch64 riscv64"
else
targets="x86_64 ppc64le aarch64 armv7hl s390x"
fi
Expand Down
2 changes: 1 addition & 1 deletion linux/jdk/suse/src/main/packaging/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ echo "DEBUG: building Suse arch ${buildArch} with version ${buildVersion}"
if [ "${buildArch}" != "all" ]; then
targets=${buildArch}
elif [ ${buildVersion} -gt 20 ]; then
targets="x86_64 aarch64 ppc64le"
targets="x86_64 aarch64 ppc64le riscv64"
else
targets="x86_64 ppc64le aarch64 armv7hl s390x"
fi
Expand Down
2 changes: 1 addition & 1 deletion linux/jre/redhat/src/main/packaging/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ echo "DEBUG: building RH arch ${buildArch} with jre version ${buildVersion}"
if [ "${buildArch}" != "all" ]; then
targets=${buildArch}
elif [ ${buildVersion} -gt 20 ]; then
targets="x86_64 ppc64le aarch64"
targets="x86_64 ppc64le aarch64 riscv64"
else
targets="x86_64 ppc64le aarch64 armv7hl s390x"
fi
Expand Down
2 changes: 1 addition & 1 deletion linux/jre/suse/src/main/packaging/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ echo "DEBUG: building Suse arch ${buildArch} with version ${buildVersion}"
if [ "${buildArch}" != "all" ]; then
targets=${buildArch}
elif [ ${buildVersion} -gt 20 ]; then
targets="x86_64 ppc64le aarch64"
targets="x86_64 ppc64le aarch64 riscv64"
else
targets="x86_64 ppc64le aarch64 armv7hl s390x"
fi
Expand Down

0 comments on commit 47623c3

Please sign in to comment.