Skip to content

Commit b549ab6

Browse files
committedFeb 27, 2021
Fix Windows CI build, add Node.js v15
I don't know why redirects aren't working here. It's possible that the GitHub Actions runner is getting redirected to HTTP, which fails (PowerShell/PowerShell#2896), but Invoke-WebRequest has no way to log what it's doing. Hard-coding a mirror works (for now).
1 parent f8305fb commit b549ab6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/ci.yaml

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ on:
66
pull_request:
77
paths-ignore:
88
- ".github/workflows/prebuild.yaml"
9-
109

1110
jobs:
1211
Linux:
1312
name: Test on Linux
1413
runs-on: ubuntu-latest
1514
strategy:
1615
matrix:
17-
node: [10, 12, 14]
16+
node: [10, 12, 14, 15]
1817
steps:
1918
- uses: actions/setup-node@v1
2019
with:
@@ -34,15 +33,15 @@ jobs:
3433
runs-on: windows-latest
3534
strategy:
3635
matrix:
37-
node: [10, 12, 14]
36+
node: [10, 12, 14, 15]
3837
steps:
3938
- uses: actions/setup-node@v1
4039
with:
4140
node-version: ${{ matrix.node }}
4241
- uses: actions/checkout@v2
4342
- name: Install Dependencies
4443
run: |
45-
Invoke-WebRequest "http://ftp.gnome.org/pub/GNOME/binaries/win64/gtk+/2.22/gtk+-bundle_2.22.1-20101229_win64.zip" -OutFile "gtk.zip"
44+
Invoke-WebRequest "https://ftp-osl.osuosl.org/pub/gnome/binaries/win64/gtk+/2.22/gtk+-bundle_2.22.1-20101229_win64.zip" -OutFile "gtk.zip"
4645
Expand-Archive gtk.zip -DestinationPath "C:\GTK"
4746
Invoke-WebRequest "https://downloads.sourceforge.net/project/libjpeg-turbo/2.0.4/libjpeg-turbo-2.0.4-vc64.exe" -OutFile "libjpeg.exe" -UserAgent NativeHost
4847
.\libjpeg.exe /S
@@ -56,7 +55,7 @@ jobs:
5655
runs-on: macos-latest
5756
strategy:
5857
matrix:
59-
node: [10, 12, 14]
58+
node: [10, 12, 14, 15]
6059
steps:
6160
- uses: actions/setup-node@v1
6261
with:

‎CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
99
==================
1010
### Changed
1111
* Upgrade dtslint
12+
* Add Node.js v15 to CI.
1213
### Added
1314
* Added support for `inverse()` and `invertSelf()` to `DOMMatrix` (#1648)
1415
### Fixed

0 commit comments

Comments
 (0)
Please sign in to comment.