Skip to content

Commit

Permalink
test: Run all integration jobs in parallel
Browse files Browse the repository at this point in the history
Unlimited number will be launched.
  • Loading branch information
clemlesne committed Oct 23, 2024
1 parent 21d5350 commit 650810a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ az devops configure --defaults organization=${org_url}
# Test if template exists
bash test/azure-devops/template-exists.sh "${agent}"

# Run all integration tests in parallel using GNU parallel
parallel bash test/azure-devops/pipeline.sh "${prefix}" {} "${flavor}" "${version}" ::: $(basename -s .yaml test/pipeline/*.yaml)
# Run all integration tests in parallel
parallel -j 0 bash test/azure-devops/pipeline.sh "${prefix}" {} "${flavor}" "${version}" ::: $(basename -s .yaml test/pipeline/*.yaml)

# Check if any of the tests failed
if [ $? -ne 0 ]; then
Expand Down

0 comments on commit 650810a

Please sign in to comment.