From 0fac5cf81373276e6530004915cf0ad098cc1be9 Mon Sep 17 00:00:00 2001 From: Idir Izitounene Date: Thu, 8 Feb 2024 20:37:08 +0100 Subject: [PATCH] Maximize number of parallel jobs --- .github/workflows/main.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8b3eb04..e5b4842 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 @@ -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 @@ -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 @@ -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) }} @@ -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) }} @@ -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) }}