Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
.devcontainer: Reduce parallelism to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Aug 15, 2022
1 parent 84a5e13 commit 945de29
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/develop-docker-cocalc/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "CoCalc Docker",
"image": "sagemathinc/cocalc",
"containerEnv": {
"MAKE": "make -j12"
"MAKE": "make -j4"
},
// Run commands after the container is created.
// libgmp.a is broken and leads to a build failure of ecm.
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/develop-docker-computop/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "computop/sage Docker",
"image": "computop/sage",
"containerEnv": {
"MAKE": "make -j12"
"MAKE": "make -j4"
},
// Run commands after the container is created.
// Install build tools, get rid of sourcing /sage/activate in non-login shells.
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/downstream-docker-cocalc/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "CoCalc Docker",
"image": "sagemathinc/cocalc",
"containerEnv": {
"MAKE": "make -j12"
"MAKE": "make -j4"
},
// Run commands after the container is created.
// libgmp.a is broken and leads to a build failure of ecm.
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/downstream-docker-computop/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "computop/sage Docker",
"image": "computop/sage",
"containerEnv": {
"MAKE": "make -j12"
"MAKE": "make -j4"
},
// Run commands after the container is created.
// Install build tools, get rid of sourcing /sage/activate in non-login shells.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"containerEnv": {
"MAKE": "make -j12"
"MAKE": "make -j4"
},
// Run commands after the container is created.
"postCreateCommand": ".devcontainer/post_create.sh",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"containerEnv": {
"MAKE": "make -j12"
"MAKE": "make -j4"
},
// Run commands after the container is created.
"postCreateCommand": ".devcontainer/post_create.sh",
Expand Down

0 comments on commit 945de29

Please sign in to comment.