Skip to content

Commit

Permalink
speed up run during test
Browse files Browse the repository at this point in the history
  • Loading branch information
dzuelke committed Dec 7, 2023
1 parent c54e6c9 commit 2beda90
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/platform-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -111,6 +111,7 @@ jobs:
echo '```' >> "$GITHUB_STEP_SUMMARY"
devcenter-generate:
needs: sync
if: always()
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down

0 comments on commit 2beda90

Please sign in to comment.