Skip to content

Commit

Permalink
.github: run native and cross-compilation jobs in parallel (#793)
Browse files Browse the repository at this point in the history
Now that we have a separate release creation step [1], we can do this
speedup.

[1] 88f367f ".github: separate release creation from uploading assets", 2023-08-16
  • Loading branch information
ee7 authored Aug 16, 2023
1 parent 88f367f commit 9ba8cc6
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 9ba8cc6

Please sign in to comment.