Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only run patch-packages in the CI #42

Merged
merged 1 commit into from
Feb 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/prebuild-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- run: npm i
- name: Prebuild
run: |
npm run apply-patches
npm run prebuild -- --strip --all --arch ia32 -u ${{ secrets.PREBUILD_TOKEN }}
npm run prebuild -- --strip --all --arch x64 -u ${{ secrets.PREBUILD_TOKEN }}
prebuild-macos:
Expand All @@ -37,6 +38,7 @@ jobs:
- run: npm i
- name: Prebuild
run: |
npm run apply-patches
npm run prebuild -- --strip --all --arch x64 -u ${{ secrets.PREBUILD_TOKEN }}
prebuild-windows:
name: Prebuild Binaries for Windows
Expand All @@ -50,5 +52,6 @@ jobs:
- run: npm i
- name: Prebuild
run: |
npm run apply-patches
npm run prebuild -- --strip --all --arch ia32 -u ${{ secrets.PREBUILD_TOKEN }}
npm run prebuild -- --strip --all --arch x64 -u ${{ secrets.PREBUILD_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/prebuild-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- run: npm i
- name: Prebuild
run: |
npm run apply-patches
npm run prebuild -- --strip --all --arch ia32
npm run prebuild -- --strip --all --arch x64
prebuild-macos:
Expand All @@ -35,6 +36,7 @@ jobs:
- run: npm i
- name: Prebuild
run: |
npm run apply-patches
npm run prebuild -- --strip --all --arch x64
prebuild-windows:
name: Prebuild Binaries for Windows
Expand All @@ -48,5 +50,6 @@ jobs:
- run: npm i
- name: Prebuild
run: |
npm run apply-patches
npm run prebuild -- --strip --all --arch ia32
npm run prebuild -- --strip --all --arch x64
Loading