mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-29 22:26:32 +00:00
patch: fix windows build and flash issues
- downgrade flasher's node to 20.11.1 on windows - bump windows GHA runner to 2022 - bump winusb-driver-generator to 2.1.9
This commit is contained in:
parent
f3123f3cbe
commit
2a470f5e6c
2
.github/actions/publish/action.yml
vendored
2
.github/actions/publish/action.yml
vendored
@ -15,7 +15,7 @@ inputs:
|
||||
# Beware that native modules will be built for this version,
|
||||
# which might not be compatible with the one used by pkg (see forge.sidecar.ts)
|
||||
# https://github.com/vercel/pkg-fetch/releases
|
||||
default: '20.x'
|
||||
default: '20.19'
|
||||
VERBOSE:
|
||||
type: string
|
||||
default: 'true'
|
||||
|
11
.github/actions/test/action.yml
vendored
11
.github/actions/test/action.yml
vendored
@ -59,6 +59,17 @@ runs:
|
||||
# as the shrinkwrap might have been done on mac/linux, this is ensure the package is there for windows
|
||||
if [[ "$RUNNER_OS" == "Windows" ]]; then
|
||||
npm i -D winusb-driver-generator
|
||||
|
||||
# need to modifies @yao-pkg/pkg-fetch
|
||||
# expected-shas.json and patches.json files to force use of nodejs v20.11.1 instead of latest minor (v20.19.4 at the time of writing).
|
||||
# this is required for Windows compatibility as 20.15.1 introduced a regression that breaks the flasher on Windows.
|
||||
# As soon as nodejs the fix is backported to node20 and, or node 22, this script can be removed: https://github.com/nodejs/node/pull/55623
|
||||
|
||||
# Add entry to expected-shas.json
|
||||
sed -i 's/}$/,\n "node-v20.11.1-win-x64": "140c377c2c91751832e673cb488724cbd003f01aa237615142cd2907f34fa1a2"\n}/' node_modules/@yao-pkg/pkg-fetch/lib-es5/expected-shas.json
|
||||
|
||||
# Replace any "v20..." key with "v20.11.1" in patches.json (keeps value)
|
||||
sed -i -E 's/"v20[^"]*":/"v20.11.1":/' node_modules/@yao-pkg/pkg-fetch/patches/patches.json
|
||||
fi
|
||||
|
||||
npm run lint
|
||||
|
6
.github/workflows/flowzone.yml
vendored
6
.github/workflows/flowzone.yml
vendored
@ -22,7 +22,7 @@ jobs:
|
||||
{
|
||||
"os": [
|
||||
["ubuntu-22.04"],
|
||||
["windows-2019"],
|
||||
["windows-2022"],
|
||||
["macos-13"],
|
||||
["macos-latest-xlarge"]
|
||||
]
|
||||
@ -31,11 +31,11 @@ jobs:
|
||||
{
|
||||
"os": [
|
||||
["ubuntu-22.04"],
|
||||
["windows-2019"],
|
||||
["windows-2022"],
|
||||
["macos-13"],
|
||||
["macos-latest-xlarge"]
|
||||
]
|
||||
}
|
||||
restrict_custom_actions: false
|
||||
github_prerelease: true
|
||||
cloudflare_website: "etcher"
|
||||
cloudflare_website: 'etcher'
|
||||
|
Loading…
x
Reference in New Issue
Block a user