-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2255 from iNavFlight/mmosca-fix-random-errors
- Loading branch information
Showing
1 changed file
with
13 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,8 +38,8 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
check-latest: true | ||
cache: 'npm' | ||
#check-latest: true | ||
#cache: 'npm' | ||
- name: Install dependencies | ||
run: sudo apt-get update && sudo apt-get -y install dpkg fakeroot rpm build-essential libudev-dev | ||
- name: Install deps | ||
|
@@ -49,6 +49,7 @@ jobs: | |
retry_on: error | ||
command: npm install | ||
timeout_minutes: 10 | ||
on_retry_command: rm -rfv node_modules | ||
- name: Build Linux | ||
run: npm run make | ||
- name: Upload Linux deb | ||
|
@@ -91,8 +92,8 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
check-latest: true | ||
cache: 'npm' | ||
#check-latest: true | ||
#cache: 'npm' | ||
# Workaround due to a bug in node-gyp: https://github.com/electron/rebuild/issues/1116 | ||
- name: Install Setuptools | ||
run: python3 -m pip install --break-system-packages setuptools | ||
|
@@ -103,6 +104,7 @@ jobs: | |
retry_on: error | ||
command: npm install | ||
timeout_minutes: 10 | ||
on_retry_command: rm -rfv node_modules | ||
- name: Build MacOS arm64 | ||
run: npm run make -- --arch="arm64" | ||
- name: Upload MacOS arm64 zip | ||
|
@@ -139,8 +141,8 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
check-latest: true | ||
cache: 'npm' | ||
#check-latest: true | ||
#cache: 'npm' | ||
# Workaround due to a bug in node-gyp: https://github.com/electron/rebuild/issues/1116 | ||
- name: Install Setuptools | ||
run: python3 -m pip install --break-system-packages setuptools | ||
|
@@ -151,6 +153,7 @@ jobs: | |
retry_on: error | ||
command: npm install | ||
timeout_minutes: 10 | ||
on_retry_command: rm -rfv node_modules | ||
- name: Build MacOS x64 | ||
run: npm run make -- --arch="x64" | ||
- name: Upload MacOS x64 zip | ||
|
@@ -191,7 +194,7 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
#cache: 'npm' | ||
- uses: engineerd/[email protected] | ||
with: | ||
name: "Wix Toolset 3.1.4" | ||
|
@@ -204,6 +207,7 @@ jobs: | |
retry_on: error | ||
command: npm install | ||
timeout_minutes: 10 | ||
on_retry_command: rm -rfv node_modules | ||
- name: Build Win x64 | ||
run: npm run make -- --arch="x64" | ||
- name: Upload Windows x64 zip | ||
|
@@ -244,7 +248,7 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: 'npm' | ||
#cache: 'npm' | ||
- uses: engineerd/[email protected] | ||
with: | ||
name: "Wix Toolset 3.1.4" | ||
|
@@ -257,6 +261,7 @@ jobs: | |
retry_on: error | ||
command: npm install | ||
timeout_minutes: 10 | ||
on_retry_command: rm -rfv node_modules | ||
- name: Build Win32 | ||
run: npm run make -- --arch="ia32" | ||
- name: Upload Windows ia32 zip | ||
|