chore: windows bots via github actions
This commit is contained in:
parent
5a5016fa7d
commit
3fe4fec11d
|
|
@ -1,4 +1,4 @@
|
||||||
name: Chromium Tests
|
name: Chromium Linux Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
32
.github/workflows/chromium-windows.yml
vendored
Normal file
32
.github/workflows/chromium-windows.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
name: Chromium Windows Tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
|
- name: npm install, and test
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run unit
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
name: Firefox Tests
|
name: Firefox Linux Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -30,7 +30,6 @@ jobs:
|
||||||
- name: npm install, build, and test
|
- name: npm install, build, and test
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
npm run build
|
|
||||||
xvfb-run --auto-servernum npm run funit
|
xvfb-run --auto-servernum npm run funit
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
32
.github/workflows/firefox-windows.yml
vendored
Normal file
32
.github/workflows/firefox-windows.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
name: Firefox Windows Tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
|
- name: npm install, and test
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run funit
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
name: WebKit Tests
|
name: WebKit Linux Tests
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
@ -35,7 +35,6 @@ jobs:
|
||||||
# The following logs LDD status of all webkit-wpe shared objects and executables.
|
# The following logs LDD status of all webkit-wpe shared objects and executables.
|
||||||
# pushd .local-webkit/$(ls .local-webkit)/minibrowser-wpe; ls -1 | grep -v pw_run.sh | LD_LIBRARY_PATH=$PWD xargs ldd; popd
|
# pushd .local-webkit/$(ls .local-webkit)/minibrowser-wpe; ls -1 | grep -v pw_run.sh | LD_LIBRARY_PATH=$PWD xargs ldd; popd
|
||||||
|
|
||||||
npm run build
|
|
||||||
xvfb-run --auto-servernum npm run wunit
|
xvfb-run --auto-servernum npm run wunit
|
||||||
env:
|
env:
|
||||||
CI: true
|
CI: true
|
||||||
32
.github/workflows/webkit-windows.yml
vendored
Normal file
32
.github/workflows/webkit-windows.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
name: WebKit Windows Tests
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [12.x]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
|
- name: npm install, and test
|
||||||
|
run: |
|
||||||
|
npm install
|
||||||
|
npm run wunit
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
Loading…
Reference in a new issue