Skip to content

Commit 591e4e3

Browse files
committed
set JULIA_CPU_CORES to 6 - in some testing on my fork this was a
few minutes faster, but may run a higher risk of getting OOM killed
1 parent 3c3af46 commit 591e4e3

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

circle.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ workflows:
33
version: 2
44
linux-builds:
55
jobs:
6-
- build-x86_64
76
- build-i686
7+
- build-x86_64
88

99
jobs:
10-
build-x86_64:
10+
build-i686:
1111
docker:
1212
# - image: ubuntu:14.04
1313
- image: circleci/python:2.7
1414
environment:
15-
JULIA_CPU_CORES: 4
15+
JULIA_CPU_CORES: 6
1616
JULIA_TEST_MAXRSS_MB: 800
17-
ARCH: x86_64
17+
ARCH: i686
1818
# resource_class: xlarge
1919
steps: &steps
2020
# apt-get update &&
@@ -70,13 +70,11 @@ jobs:
7070
paths:
7171
- ~/.ccache
7272

73-
build-i686:
73+
build-x86_64:
7474
docker:
75-
# - image: ubuntu:14.04
7675
- image: circleci/python:2.7
7776
environment:
78-
JULIA_CPU_CORES: 4
77+
JULIA_CPU_CORES: 6
7978
JULIA_TEST_MAXRSS_MB: 800
80-
ARCH: i686
81-
# resource_class: xlarge
79+
ARCH: x86_64
8280
steps: *steps

0 commit comments

Comments
 (0)