Skip to content

Commit e8b35dd

Browse files
authored
Merge pull request #218 from mtelvers/ubuntu-riscv
Use official RISCV image
2 parents df76fb0 + 35711fc commit e8b35dd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src-opam/distro.ml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ let base_distro_tag ?(arch = `X86_64) d =
11121112
| `Ppc64le, (`V8 | `V9 | `V10) -> ("ppc64le/debian", tag)
11131113
| `S390x, (`V8 | `V9 | `V10) -> ("s390x/debian", tag)
11141114
| _ -> ("debian", tag))
1115-
| `Ubuntu v -> (
1115+
| `Ubuntu v ->
11161116
let tag =
11171117
match v with
11181118
| `V12_04 -> "precise"
@@ -1137,9 +1137,7 @@ let base_distro_tag ?(arch = `X86_64) d =
11371137
| `V23_10 -> "mantic"
11381138
| `V24_04 -> "noble"
11391139
in
1140-
match arch with
1141-
| `Riscv64 -> ("ocurrent/opam-staging", tag_of_distro d ^ "-riscv64")
1142-
| _ -> ("ubuntu", tag))
1140+
("ubuntu", tag)
11431141
| `CentOS v ->
11441142
let tag = match v with `V6 -> "6" | `V7 -> "7" | `V8 -> "8" in
11451143
("centos", tag)

0 commit comments

Comments
 (0)