Skip to content

Commit 3ffc782

Browse files
committed
Removed --max-workers=2 from CI scripts and semaphore configuration
1 parent 5bcab0e commit 3ffc782

7 files changed

Lines changed: 7 additions & 7 deletions

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ blocks:
8080
# print Java version
8181
- java -version
8282
# compile project
83-
- ./gradlew --console=plain --no-daemon --build-cache --max-workers=2 assembleConsumerUiTests
83+
- ./gradlew --console=plain --no-daemon --build-cache assembleConsumerUiTests
8484
epilogue:
8585
on_pass:
8686
commands:

script/ci-instrumentation-tests-enterprise.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
set -euo pipefail
99

10-
./gradlew --console=plain --no-daemon --build-cache --max-workers=2 :FlowCrypt:connectedEnterpriseUiTestsAndroidTest \
10+
./gradlew --console=plain --no-daemon --build-cache :FlowCrypt:connectedEnterpriseUiTestsAndroidTest \
1111
-Pandroid.testInstrumentationRunnerArguments.filter=com.flowcrypt.email.junit.filters.EnterpriseTestsFilter

script/ci-instrumentation-tests-flaky.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
set -euo pipefail
99

10-
./gradlew --console=plain --no-daemon --build-cache --max-workers=2 :FlowCrypt:connectedEnterpriseUiTestsAndroidTest \
10+
./gradlew --console=plain --no-daemon --build-cache :FlowCrypt:connectedEnterpriseUiTestsAndroidTest \
1111
-Pandroid.testInstrumentationRunnerArguments.filter=com.flowcrypt.email.junit.filters.ReadyForCIAndFlakyFilter

script/ci-instrumentation-tests-with-mailserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ set -euo pipefail
1313
# -e log true \
1414
# com.flowcrypt.email.debug.test/androidx.test.runner.AndroidJUnitRunner
1515

16-
./gradlew --console=plain --no-daemon --build-cache --max-workers=2 :FlowCrypt:connectedConsumerUiTestsAndroidTest \
16+
./gradlew --console=plain --no-daemon --build-cache :FlowCrypt:connectedConsumerUiTestsAndroidTest \
1717
-Pandroid.testInstrumentationRunnerArguments.filter=com.flowcrypt.email.junit.filters.DependsOnMailServerFilter

script/ci-instrumentation-tests-without-mailserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fi
3333
# -e log true \
3434
# com.flowcrypt.email.debug.test/androidx.test.runner.AndroidJUnitRunner
3535

36-
./gradlew --console=plain --no-daemon --build-cache --max-workers=2 :FlowCrypt:connectedConsumerUiTestsAndroidTest \
36+
./gradlew --console=plain --no-daemon --build-cache :FlowCrypt:connectedConsumerUiTestsAndroidTest \
3737
-Pandroid.testInstrumentationRunnerArguments.filter=com.flowcrypt.email.junit.filters.DoesNotNeedMailServerFilter \
3838
-Pandroid.testInstrumentationRunnerArguments.numShards="${numShards}" \
3939
-Pandroid.testInstrumentationRunnerArguments.shardIndex="${shardIndex}"

script/ci-junit-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
set -euo pipefail
99

10-
./gradlew --console=plain --no-daemon --build-cache --max-workers=2 :FlowCrypt:testConsumerUiTestsUnitTest
10+
./gradlew --console=plain --no-daemon --build-cache :FlowCrypt:testConsumerUiTestsUnitTest

script/ci-lint-checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
set -euo pipefail
99

10-
./gradlew --console=plain --no-daemon --build-cache --max-workers=2 :FlowCrypt:lintConsumerUiTests
10+
./gradlew --console=plain --no-daemon --build-cache :FlowCrypt:lintConsumerUiTests

0 commit comments

Comments
 (0)