Skip to content

Commit 4b6a3b1

Browse files
authored
Use the node:18-bullseye image for Linux x64 builds (#1349)
This fixes #1348 by building the artifacts on a base Linux image with glibc 2.31.
1 parent c757250 commit 4b6a3b1

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

.github/workflows/build.yml

+13-10
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
- prebuild
7373
- prebuild-alpine
7474
- prebuild-alpine-arm
75+
- prebuild-linux-x64
7576
- prebuild-linux-arm
7677
steps:
7778
- uses: actions/checkout@v4
@@ -89,7 +90,6 @@ jobs:
8990
fail-fast: false
9091
matrix:
9192
os:
92-
- ubuntu-22.04
9393
- macos-13
9494
- macos-14
9595
- windows-2019
@@ -105,13 +105,6 @@ jobs:
105105
run: pip.exe install setuptools
106106
- if: ${{ startsWith(matrix.os, 'macos') }}
107107
run: brew install python-setuptools
108-
- if: ${{ !startsWith(matrix.os, 'windows') && !startsWith(matrix.os, 'macos') }}
109-
run: python3 -m pip install setuptools
110-
- if: ${{ startsWith(matrix.os, 'ubuntu') }}
111-
run: |
112-
sudo apt update
113-
sudo apt install gcc-10 g++-10 -y
114-
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10 --slave /usr/bin/gcov gcov /usr/bin/gcov-10
115108
- run: npm install --ignore-scripts
116109
- run: ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
117110
- run: ${{ env.ELECTRON_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
@@ -122,10 +115,20 @@ jobs:
122115
${{ env.ELECTRON_BUILD_CMD }} --arch ia32 -u ${{ secrets.GITHUB_TOKEN }}
123116
${{ env.ELECTRON_BUILD_CMD }} --arch arm64 -u ${{ secrets.GITHUB_TOKEN }}
124117
118+
prebuild-linux-x64:
119+
if: ${{ github.event_name == 'release' }}
120+
name: Prebuild on Linux x64
121+
runs-on: ubuntu-latest
122+
container: node:18-bullseye
123+
needs: test
124+
steps:
125+
- uses: actions/checkout@v4
126+
- run: npm install --ignore-scripts
127+
- run: ${{ env.NODE_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
128+
- run: ${{ env.ELECTRON_BUILD_CMD }} -u ${{ secrets.GITHUB_TOKEN }}
129+
125130
prebuild-alpine:
126131
if: ${{ github.event_name == 'release' }}
127-
strategy:
128-
fail-fast: false
129132
name: Prebuild on alpine
130133
runs-on: ubuntu-latest
131134
container: node:18-alpine

0 commit comments

Comments
 (0)