Skip to content

Commit

Permalink
Maximize number of parallel jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
idirze committed Feb 8, 2024
1 parent 55b1ad9 commit 0fac5cf
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ jobs:
build-base:
name: build-test-base (python-${{ matrix.python.python_version }})
strategy:
# 3 Jobs in //, the base jobs run in sequential
max-parallel: 3
matrix:
python: ${{ fromJson(needs.build-version-compatibility-matrix.outputs.python) }}
uses: ./.github/workflows/build-test-base.yml
Expand All @@ -115,8 +113,6 @@ jobs:
build-datascience:
name: build-test-datascience (python-${{ matrix.python.python_version }})
strategy:
# 1 matrix call = +2 jobs in // (check the number here build-datascience.yml)
max-parallel: 1
matrix:
python: ${{ fromJson(needs.build-version-compatibility-matrix.outputs.python) }}
uses: ./.github/workflows/build-test-datascience.yml
Expand All @@ -132,8 +128,6 @@ jobs:
build-spark:
name: build-test-spark (python-${{ matrix.spark.python_version }})
strategy:
# 2 jobs in //
max-parallel: 2
matrix:
spark: ${{ fromJson(needs.build-version-compatibility-matrix.outputs.spark) }}
uses: ./.github/workflows/build-test-spark.yml
Expand All @@ -158,7 +152,6 @@ jobs:
if: github.ref == 'refs/heads/main'
name: push-base (python-${{ matrix.python.python_version }})
strategy:
max-parallel: 1
matrix:
image: [ docker-stacks-foundation, base-notebook, minimal-notebook, scipy-notebook,]
python: ${{ fromJson(needs.build-version-compatibility-matrix.outputs.python) }}
Expand All @@ -176,7 +169,6 @@ jobs:
if: github.ref == 'refs/heads/main'
name: push-datascience (python-${{ matrix.python.python_version }})
strategy:
max-parallel: 1
matrix:
image: [r-notebook, datascience-notebook, ]
python: ${{ fromJson(needs.build-version-compatibility-matrix.outputs.python) }}
Expand All @@ -193,7 +185,6 @@ jobs:
push-spark:
if: github.ref == 'refs/heads/main'
strategy:
max-parallel: 1
matrix:
image: [ pyspark-notebook, all-spark-notebook,]
spark: ${{ fromJson(needs.build-version-compatibility-matrix.outputs.spark) }}
Expand Down

0 comments on commit 0fac5cf

Please sign in to comment.