Skip to content

Commit

Permalink
.github: run native and cross-compilation jobs in parallel
Browse files Browse the repository at this point in the history
Now that we have a separate release creation step, we can do this
speedup.
  • Loading branch information
ee7 committed Aug 16, 2023
1 parent 88f367f commit 33e61d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

cross-compile:
needs: [build]
needs: [create-empty-release]
runs-on: ubuntu-22.04
name: cross-compile
permissions:
Expand All @@ -98,7 +98,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

checksums:
needs: [cross-compile]
needs: [build, cross-compile]
runs-on: ubuntu-22.04
name: Upload signatures and checksums
permissions:
Expand Down

0 comments on commit 33e61d6

Please sign in to comment.