Skip to content

Commit

Permalink
Merge pull request #11768 from kit-ty-kate/arm64-const
Browse files Browse the repository at this point in the history
Constrain packages not available on ARM64
  • Loading branch information
kit-ty-kate authored Apr 13, 2018
2 parents d7f6d3e + dad41b5 commit b0a5919
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/core/core.v0.10.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ depends: [
"jbuilder" {build & >= "1.0+beta12"}
"ocaml-migrate-parsetree" {>= "0.4"}
]
available: [ ocaml-version >= "4.04.1" ]
available: [ ocaml-version >= "4.04.1" & arch != "aarch64" ]
2 changes: 1 addition & 1 deletion packages/core/core.v0.11.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ depends: [
"ocaml-migrate-parsetree" {>= "1.0"}
"ppxlib" {>= "0.1.0"}
]
available: [ ocaml-version >= "4.04.1" ]
available: [ ocaml-version >= "4.04.1" & arch != "aarch64" ]
2 changes: 1 addition & 1 deletion packages/core/core.v0.9.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ depends: [
"base-threads"
"ocaml-migrate-parsetree" {>= "0.4"}
]
available: [ ocaml-version >= "4.03.0" & ocaml-version < "4.05.0" ]
available: [ ocaml-version >= "4.03.0" & ocaml-version < "4.05.0" & arch != "aarch64" ]
2 changes: 1 addition & 1 deletion packages/core/core.v0.9.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ depends: [
"base-threads"
"ocaml-migrate-parsetree" {>= "0.4"}
]
available: [ ocaml-version >= "4.03.0" & ocaml-version < "4.06.0" ]
available: [ ocaml-version >= "4.03.0" & ocaml-version < "4.06.0" & arch != "aarch64" ]
2 changes: 1 addition & 1 deletion packages/core/core.v0.9.2/opam
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ depends: [
"base-threads"
"ocaml-migrate-parsetree" {>= "0.4"}
]
available: [ ocaml-version >= "4.03.0" ]
available: [ ocaml-version >= "4.03.0" & arch != "aarch64" ]
2 changes: 1 addition & 1 deletion packages/core_kernel/core_kernel.v0.9.0/opam
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ depends: [
"ocaml-migrate-parsetree" {>= "0.4"}
"num"
]
available: [ ocaml-version >= "4.03.0" & ocaml-version < "4.06.0" ]
available: [ ocaml-version >= "4.03.0" & ocaml-version < "4.06.0" & arch != "aarch64" ]
2 changes: 1 addition & 1 deletion packages/core_kernel/core_kernel.v0.9.1/opam
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ depends: [
"variantslib" {>= "v0.9" & < "v0.10"}
"ocaml-migrate-parsetree" {>= "0.4"}
]
available: [ ocaml-version >= "4.03.0" ]
available: [ ocaml-version >= "4.03.0" & arch != "aarch64" ]

0 comments on commit b0a5919

Please sign in to comment.