You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .circleci/config.yml
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -45,14 +45,13 @@ commands:
45
45
steps:
46
46
- checkout
47
47
- run: EXTRAFLAGS=-Werror make
48
-
- run: make amalgamate
48
+
- run: EXTRAFLAGS=-Werror make amalgamate
49
49
- run: ARCHFLAGS=-march=haswell make amalgamate # some users do this: https://github.com/lemire/simdjson/issues/444
50
-
- run: make test
51
-
- run: make checkperf
50
+
- run: EXTRAFLAGS=-Werror make test
51
+
- run: EXTRAFLAGS=-Werror make checkperf
52
52
- run: make clean
53
53
- run: ARCHFLAGS=-march=haswell make test # this breaks runtime dispatch, but see https://github.com/lemire/simdjson/issues/444... this is a code robustness test
54
54
- run: make clean
55
-
- run: EXTRAFLAGS=-DSIMDJSON_NO_COMPUTED_GOTO=true make test # this should run tests with computed gotos disabled
0 commit comments