From eb04996c7db0f0921cabef89022dae3a8cc6bb63 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sun, 14 Jan 2024 17:59:42 +0400 Subject: [PATCH] Use 1 fast 2CPU and 3 slow 1CPU aarch64 runners (#2040) undefined --- .github/workflows/docker.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 08207492..a38058c7 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -66,7 +66,7 @@ jobs: parent-image: "" image: docker-stacks-foundation platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_FAST if: github.repository_owner == 'jupyter' x86_64-foundation: @@ -83,7 +83,7 @@ jobs: parent-image: docker-stacks-foundation image: base-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_FAST needs: [aarch64-foundation] if: github.repository_owner == 'jupyter' @@ -102,7 +102,7 @@ jobs: parent-image: base-notebook image: minimal-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_FAST needs: [aarch64-base] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -122,7 +122,7 @@ jobs: parent-image: minimal-notebook image: scipy-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_FAST needs: [aarch64-minimal] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -142,7 +142,7 @@ jobs: parent-image: minimal-notebook image: r-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_SLOW needs: [aarch64-minimal] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -162,7 +162,7 @@ jobs: parent-image: minimal-notebook image: julia-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_SLOW needs: [aarch64-minimal] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -182,7 +182,7 @@ jobs: parent-image: scipy-notebook image: tensorflow-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_SLOW needs: [aarch64-scipy] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -202,7 +202,7 @@ jobs: parent-image: scipy-notebook image: pytorch-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_SLOW needs: [aarch64-scipy] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -222,7 +222,7 @@ jobs: parent-image: scipy-notebook image: datascience-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_SLOW needs: [aarch64-scipy] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -242,7 +242,7 @@ jobs: parent-image: scipy-notebook image: pyspark-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_FAST needs: [aarch64-scipy] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]') @@ -262,7 +262,7 @@ jobs: parent-image: pyspark-notebook image: all-spark-notebook platform: aarch64 - runs-on: ARM64 + runs-on: ARM64_FAST needs: [aarch64-pyspark] if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')