Skip to content

Commit 2e9e0b7

Browse files
committed
devops: rename bots to feature browser first
1 parent dbb45d4 commit 2e9e0b7

File tree

1 file changed

+39
-39
lines changed

1 file changed

+39
-39
lines changed

.github/workflows/tests.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ env:
1212
CI: true
1313

1414
jobs:
15-
tests_linux_chromium:
16-
name: "Linux + CR"
15+
chromium_linux:
16+
name: "Chromium Linux"
1717
runs-on: ubuntu-18.04
1818
steps:
1919
- uses: actions/checkout@v1
@@ -27,61 +27,57 @@ jobs:
2727
- run: npm install
2828
- run: xvfb-run --auto-servernum npm run ccoverage
2929

30-
tests_linux_firefox:
31-
name: "Linux + FF"
32-
runs-on: ubuntu-18.04
30+
chromium_mac:
31+
name: "Chromium Mac"
32+
runs-on: macos-latest
3333
steps:
3434
- uses: actions/checkout@v1
3535
- uses: actions/setup-node@v1
3636
with:
3737
node-version: 10.15
38-
- name: install required packages
39-
run: |
40-
sudo apt-get update
41-
sudo apt-get install xvfb
4238
- run: npm install
43-
- run: xvfb-run --auto-servernum npm run fcoverage
39+
- run: npm run ctest
4440

45-
tests_linux_webkit:
46-
name: "Linux + WK"
47-
runs-on: ubuntu-18.04
41+
chromium_win:
42+
name: "Chromium Win"
43+
runs-on: windows-latest
4844
steps:
4945
- uses: actions/checkout@v1
5046
- uses: actions/setup-node@v1
5147
with:
5248
node-version: 10.15
53-
- name: install required packages
54-
run: |
55-
sudo apt-get update
56-
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
57-
sudo apt-get install xvfb
5849
- run: npm install
59-
- run: xvfb-run --auto-servernum npm run wcoverage
50+
- run: npm run ctest
6051

61-
tests_win_chromium:
62-
name: "Win + CR"
63-
runs-on: windows-latest
52+
webkit_linux:
53+
name: "WebKit Linux"
54+
runs-on: ubuntu-18.04
6455
steps:
6556
- uses: actions/checkout@v1
6657
- uses: actions/setup-node@v1
6758
with:
6859
node-version: 10.15
60+
- name: install required packages
61+
run: |
62+
sudo apt-get update
63+
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
64+
sudo apt-get install xvfb
6965
- run: npm install
70-
- run: npm run ctest
66+
- run: xvfb-run --auto-servernum npm run wcoverage
7167

72-
tests_win_firefox:
73-
name: "Win + FF"
74-
runs-on: windows-latest
68+
webkit_mac:
69+
name: "WebKit Mac"
70+
runs-on: macos-latest
7571
steps:
7672
- uses: actions/checkout@v1
7773
- uses: actions/setup-node@v1
7874
with:
7975
node-version: 10.15
8076
- run: npm install
81-
- run: npm run ftest
77+
- run: npm run wtest
8278

83-
tests_win_webkit:
84-
name: "Win + WK"
79+
webkit_win:
80+
name: "WebKit Win"
8581
runs-on: windows-latest
8682
steps:
8783
- uses: actions/checkout@v1
@@ -93,19 +89,23 @@ jobs:
9389
env:
9490
DEBUG: "*launch*"
9591

96-
tests_mac_chromium:
97-
name: "Mac + CR"
98-
runs-on: macos-latest
92+
firefox_linux:
93+
name: "Firefox Linux"
94+
runs-on: ubuntu-18.04
9995
steps:
10096
- uses: actions/checkout@v1
10197
- uses: actions/setup-node@v1
10298
with:
10399
node-version: 10.15
100+
- name: install required packages
101+
run: |
102+
sudo apt-get update
103+
sudo apt-get install xvfb
104104
- run: npm install
105-
- run: npm run ctest
105+
- run: xvfb-run --auto-servernum npm run fcoverage
106106

107-
tests_mac_firefox:
108-
name: "Mac + FF"
107+
firefox_mac:
108+
name: "Firefox Mac"
109109
runs-on: macos-latest
110110
steps:
111111
- uses: actions/checkout@v1
@@ -115,13 +115,13 @@ jobs:
115115
- run: npm install
116116
- run: npm run ftest
117117

118-
tests_mac_webkit:
119-
name: "Mac + WK"
120-
runs-on: macos-latest
118+
firefox_win:
119+
name: "Firefox Win"
120+
runs-on: windows-latest
121121
steps:
122122
- uses: actions/checkout@v1
123123
- uses: actions/setup-node@v1
124124
with:
125125
node-version: 10.15
126126
- run: npm install
127-
- run: npm run wtest
127+
- run: npm run ftest

0 commit comments

Comments
 (0)