Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase circleci resource class to large #2143

Merged
merged 1 commit into from Oct 8, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Expand Up @@ -11,6 +11,7 @@ jobs:
CI_TERRIBLENESS: 30.seconds
# Run two containers, $CIRCLE_NODE_TOTAL = 2, $CIRCLE_NODE_INDEX = [0|1]
parallelism: 2
resource_class: large
working_directory: ~/linkerd
# All run steps execute in both containers unless otherwise specified.
# Deploy steps execute on container 0.
Expand Down
Expand Up @@ -18,7 +18,7 @@ class ExamplesTest extends FunSuite {
for (file <- files) {
// Example tests are running out of memory in CI and so have been temporarily been disabled to
// unblock CI. This needs to be investigated and fixed.
ignore(file.getName) {
test(file.getName) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

val source = Source.fromFile(file)
try {
val lines = source.getLines().toSeq
Expand Down