Skip to content

Commit 5c2a5b3

Browse files
committed
maybe fix more things
1 parent 6eb9031 commit 5c2a5b3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/prebuild.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
fail-fast: false
5151
matrix:
52-
node: [8, 9, 10, 11] # 12, 13, 14, 15, 16, 17, 18, 19
52+
node: [8, 9] # 10, 11, 12, 13, 14, 15, 16, 17, 18, 19
5353
canvas_tag: ["v2.11.0"] # e.g. "v2.6.1"
5454
name: ${{ matrix.canvas_tag }}, Node.js ${{ matrix.node }}, Linux
5555
runs-on: ubuntu-latest
@@ -81,7 +81,7 @@ jobs:
8181
set -ex
8282
mkdir -p prebuild
8383
cp -rfv ./prebuild-branch/prebuild/* ./prebuild/
84-
npm install -g node-gyp@7
84+
npm install -g node-gyp@6
8585
npm install --ignore-scripts
8686
. prebuild/Linux/preinstall.sh
8787
cp prebuild/Linux/binding.gyp binding.gyp
@@ -214,7 +214,7 @@ jobs:
214214
strategy:
215215
fail-fast: false
216216
matrix:
217-
node: [8, 9, 10, 11] # 12, 13, 14, 15, 16, 17, 18, 19
217+
node: [8, 9] # 10, 11, 12, 13, 14, 15, 16, 17, 18, 19
218218
canvas_tag: ["v2.11.0"] # e.g. "v2.6.1"
219219
name: ${{ matrix.canvas_tag}}, Node.js ${{ matrix.node }}, Windows
220220
runs-on: windows-2019
@@ -245,7 +245,7 @@ jobs:
245245
run: |
246246
git checkout ${{ matrix.canvas_tag }}
247247
git checkout $env:GITHUB_SHA -- prebuild/
248-
npm install -g node-gyp@8
248+
npm install -g node-gyp@6
249249
npm install --ignore-scripts
250250
msys2 -c ". prebuild/Windows/preinstall.sh"
251251
msys2 -c "cp prebuild/Windows/binding.gyp binding.gyp"

prebuild/macOS/preinstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
brew update
2-
brew install pkg-config cairo pango librsvg python3 giflib # python3 is for macpack
2+
brew install pkg-config cairo pango librsvg giflib # python3 is for macpack
33
# brew upgrade python # activates python 3
44
pip3 install --user macpack

0 commit comments

Comments
 (0)