Skip to content

Commit

Permalink
test: parallel build (#702)
Browse files Browse the repository at this point in the history
Co-authored-by: khalilou88 <[email protected]>
  • Loading branch information
khalilou88 and khalilou88 authored Dec 20, 2023
1 parent 25fadba commit 75d0e5c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ describe('@jnxplus/nx-maven spring-boot smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe('@jnxplus/nx-maven spring-boot smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down Expand Up @@ -120,7 +120,7 @@ describe('@jnxplus/nx-maven spring-boot smoke', () => {
execSyncOptions(),
);

execSync(`nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`nx run-many --target=build --parallel`, execSyncOptions());

execSync(`nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('nx-maven micronaut bom smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ describe('nx-maven micronaut smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('nx-maven quarkus smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('nx-maven spring-boot bom smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('nx-maven spring-boot smoke', () => {

execSync(`npx nx test ${testLib}`, execSyncOptions());

execSync(`npx nx run-many --target=build --parallel=1`, execSyncOptions());
execSync(`npx nx run-many --target=build --parallel`, execSyncOptions());

execSync(`npx nx graph --file=dep-graph.json`, execSyncOptions());

Expand Down

0 comments on commit 75d0e5c

Please sign in to comment.