-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
50 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,11 +24,6 @@ jobs: | |
exit 1 | ||
fi | ||
- name: 👷 Build Dependencies | ||
run: | | ||
dnf install -y make automake gcc gcc-c++ kernel-devel cmake git | ||
dnf install -y pipewire-devel pipewire-libs pulseaudio-libs-devel pipewire-pulseaudio | ||
- name: 🍃 Install Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
|
@@ -41,10 +36,44 @@ jobs: | |
version: 8 | ||
run_install: false | ||
|
||
- name: 🔨 Build | ||
run: "pnpm install" | ||
- name: ⏱️ Wait for x86-64 Builds | ||
uses: lewagon/[email protected] | ||
with: | ||
wait-interval: 600 | ||
ref: ${{ github.ref }} | ||
check-name: "build-fedora37" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 📦 Download Build (x86-64) | ||
id: download-artifact | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
workflow: build.yml | ||
name: addon-x86-64 | ||
path: build/Release | ||
allow_forks: false | ||
|
||
- name: 🛠️ Prepare Prebuilds (x86-64) | ||
run: pnpm pkg-prebuilds-copy --baseDir build/Release --source venmic-addon.node --name=venmic-addon --strip --napi_version=7 | ||
|
||
- name: ⏱️ Wait for armv8 Builds | ||
uses: lewagon/[email protected] | ||
with: | ||
wait-interval: 600 | ||
ref: ${{ github.ref }} | ||
check-name: "build-fedora37-arm" | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 📦 Download Build (armv8) | ||
id: download-artifact | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
workflow: build.yml | ||
name: addon-armv8 | ||
path: build/Release | ||
allow_forks: false | ||
|
||
- name: 🛠️ Prepare Prebuilds | ||
- name: 🛠️ Prepare Prebuilds (armv8) | ||
run: pnpm pkg-prebuilds-copy --baseDir build/Release --source venmic-addon.node --name=venmic-addon --strip --napi_version=7 | ||
|
||
- name: 🛒 Publish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters