Skip to content

Commit b9a990a

Browse files
committed
Do not test with conf-npm on x86_32
The installation of `conf-npm` tends to fail on CI on `x86_32` and, indeed, it just failed on `opam-ci`. As we test on various other architectures, it is probably best to just skip testing on the legacy `x86_32`.
1 parent 0a82bcf commit b9a990a

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

dune-project

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
:with-test))
3939
(conf-npm
4040
(and
41+
(<> :arch "x86_32")
4142
(<> :os "win32")
4243
:with-test))
4344
;; Documentation dependencies

multicore-magic.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ depends: [
1212
"domain_shims" {>= "0.1.0" & with-test}
1313
"alcotest" {>= "1.7.0" & with-test}
1414
"js_of_ocaml" {>= "5.4.0" & with-test}
15-
"conf-npm" {os != "win32" & with-test}
15+
"conf-npm" {arch != "x86_32" & os != "win32" & with-test}
1616
"sherlodoc" {>= "0.2" & with-doc}
1717
"odoc" {>= "2.4.1" & with-doc}
1818
]

test/dune

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
(modes js)
1717
(build_if
1818
(and
19+
(<> %{architecture} i386)
1920
(<> %{os_type} Win32)))
2021
(action
2122
;; It is fine if 'node:fs' cannot be found. js_of_ocaml>=5.9 does not like

0 commit comments

Comments
 (0)