Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
Change to just do a normal maven verify (non parallel) instead.
  • Loading branch information
nhkhai committed May 1, 2024
1 parent 2ed5215 commit 93026e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
workflows:
ci_flow: # Workflow name. This is the name of the workflow, feel free to change it to better match your workflow.
jobs:
- maven/parallel_test:
- maven/test: # This will use the CircleCI Maven Orb to do a mvn verify (which includes build and test), then generate the test report.
executor: openjdk-with-postgres
filters:
branches:
Expand All @@ -71,15 +71,15 @@ workflows:

- publish:
requires:
- maven/parallel_test
- maven/test

- scan:
requires:
- publish

cicd_flow:
jobs:
- maven/parallel_test:
- maven/test: # This will use the CircleCI Maven Orb to do a mvn verify (which includes build and test), then generate the test report.
executor: openjdk-with-postgres
filters:
branches:
Expand All @@ -88,7 +88,7 @@ workflows:

- publish:
requires:
- maven/parallel_test
- maven/test

- scan:
requires:
Expand Down

0 comments on commit 93026e2

Please sign in to comment.