From 2beda90f1927a6a759bc44cbda63b08b4df74e63 Mon Sep 17 00:00:00 2001 From: David Zuelke Date: Wed, 6 Dec 2023 22:52:44 +0100 Subject: [PATCH] speed up run during test --- .github/workflows/platform-sync.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/platform-sync.yml b/.github/workflows/platform-sync.yml index abbc78fc0..4ba2c4fe5 100644 --- a/.github/workflows/platform-sync.yml +++ b/.github/workflows/platform-sync.yml @@ -43,7 +43,7 @@ jobs: printf "%s\n" "${stacks[@]}" | jq -jcRn '[inputs|select(length>0)]' >> "$GITHUB_OUTPUT" docker-build: needs: [stack-list] - if: ${{ needs.stack-list.outputs.stacks != '[]' && needs.stack-list.outputs.stacks != '' }} + if: ${{ false && needs.stack-list.outputs.stacks != '[]' && needs.stack-list.outputs.stacks != '' }} runs-on: ubuntu-22.04 strategy: matrix: @@ -74,7 +74,7 @@ jobs: path: /tmp/docker-cache.tar.gz sync: needs: [stack-list, docker-build] - if: ${{ needs.stack-list.outputs.stacks != '[]' && needs.stack-list.outputs.stacks != '' }} + if: ${{ false && needs.stack-list.outputs.stacks != '[]' && needs.stack-list.outputs.stacks != '' }} runs-on: ubuntu-22.04 strategy: matrix: @@ -111,6 +111,7 @@ jobs: echo '```' >> "$GITHUB_STEP_SUMMARY" devcenter-generate: needs: sync + if: always() runs-on: ubuntu-22.04 steps: - name: Checkout