Skip to content

Commit 3e2dd76

Browse files
committed
Upgrade to Electron 43
1 parent f9046ed commit 3e2dd76

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ env:
2121
FULL_DISTRIBUTE_PATH: build/distribute
2222
RUNTIME_URL: https://artifacts.electronjs.org/headers/dist
2323
RUNTIME_NAME: iojs
24-
RUNTIME_VERSION: v29.4.3
24+
RUNTIME_VERSION: v43.2.0
2525

2626
permissions:
2727
contents: read
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install Node.js
5959
uses: actions/setup-node@v4
6060
with:
61-
node-version: '20.x'
61+
node-version: '24.x'
6262

6363
- name: Install dependencies
6464
run: yarn install

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if(APPLE)
77
endif()
88
if (NOT CMAKE_OSX_DEPLOYMENT_TARGET)
99
if ("${CMAKE_OSX_ARCHITECTURES}" STREQUAL "arm64")
10-
set(CMAKE_OSX_DEPOLYMENT_TARGET "11.0")
10+
set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0")
1111
else()
1212
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15")
1313
endif()
@@ -22,7 +22,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
2222

2323
SET(NODEJS_URL "https://artifacts.electronjs.org/headers/dist" CACHE STRING "Node.JS URL")
2424
SET(NODEJS_NAME "iojs" CACHE STRING "Node.JS Name")
25-
SET(NODEJS_VERSION "v29.4.3" CACHE STRING "Node.JS Version")
25+
SET(NODEJS_VERSION "v43.2.0" CACHE STRING "Node.JS Version")
2626

2727
include(NodeJS)
2828
include(CPack)

ci/build-osx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fi
3333

3434
# Configure
3535
cmake .. \
36-
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 \
36+
-DCMAKE_OSX_DEPLOYMENT_TARGET=${CMAKE_OSX_DEPLOYMENT_TARGET} \
3737
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
3838
-DCMAKE_INSTALL_PREFIX=${FULL_DISTRIBUTE_PATH}/node-window-rendering \
3939
${NODEJS_NAME_PARAM} \

0 commit comments

Comments
 (0)