-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into protocol_dump
- Loading branch information
Showing
37 changed files
with
899 additions
and
1,005 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: "infra" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
doc-and-lint: | ||
name: "docs & lint" | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- name: install required packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libgbm-dev | ||
sudo apt-get install xvfb | ||
- run: npm install | ||
- run: npm run lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
name: tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
tests_linux_chromium: | ||
name: "Linux + CR" | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- name: install required packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libgbm-dev xvfb | ||
- run: npm install | ||
- run: xvfb-run --auto-servernum npm run ccoverage | ||
|
||
tests_linux_firefox: | ||
name: "Linux + FF" | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- name: install required packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install xvfb | ||
- run: npm install | ||
- run: xvfb-run --auto-servernum npm run fcoverage | ||
|
||
tests_linux_webkit: | ||
name: "Linux + WK" | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- name: install required packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install libwoff1 libopus0 libwebp6 libwebpdemux2 libenchant1c2a libgudev-1.0-0 libsecret-1-0 libhyphen0 libgdk-pixbuf2.0-0 libegl1 libgles2 libevent-2.1-6 libnotify4 libxslt1.1 | ||
sudo apt-get install xvfb | ||
- run: npm install | ||
- run: xvfb-run --auto-servernum npm run wcoverage | ||
|
||
tests_win_chromium: | ||
name: "Win + CR" | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- run: npm install | ||
- run: npm run ctest | ||
|
||
tests_win_firefox: | ||
name: "Win + FF" | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- run: npm install | ||
- run: npm run ftest | ||
|
||
tests_win_webkit: | ||
name: "Win + WK" | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- run: npm install | ||
- run: npm run wtest | ||
|
||
tests_mac_chromium: | ||
name: "Mac + CR" | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- run: npm install | ||
- run: npm run ctest | ||
|
||
tests_mac_firefox: | ||
name: "Mac + FF" | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- run: npm install | ||
- run: npm run ftest | ||
|
||
tests_mac_webkit: | ||
name: "Mac + WK" | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 10.15 | ||
- run: npm install | ||
- run: npm run wtest |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1027 | ||
1028 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.