-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
2,378 additions
and
693 deletions.
There are no files selected for viewing
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
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
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
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,81 @@ | ||
name: "Regression Test - HTML Linting Test" | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
- '**software-full.json' | ||
- '**software-sources.json' | ||
- '**update-software.yml' | ||
- '**update_software_helper.py' | ||
- '**software-rules.json' | ||
- 'Dockerfile' | ||
- '**regression-test-404.yml' | ||
- '**regression-test-a11y-statement.yml' | ||
- '**regression-test-css.yml' | ||
- '**regression-test-docker-image.yml' | ||
- '**regression-test-email.yml' | ||
- '**regression-test-energy-efficiency.yml' | ||
- '**regression-test-google-lighthouse-based.yml' | ||
- '**regression-test-html.yml' | ||
- '**regression-test-http.yml' | ||
- '**regression-test-lint-css.yml' | ||
- '**regression-test-pa11y.yml' | ||
- '**regression-test-sitespeed-browsertime-har.yml' | ||
- '**regression-test-sitespeed.yml' | ||
- '**regression-test-software.yml' | ||
- '**regression-test-standard-files.yml' | ||
- '**regression-test-tracking.yml' | ||
- '**regression-test-translations.yml' | ||
- '**regression-test-webbkoll.yml' | ||
- '**regression-test-ylt.yml' | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
config: ['SITESPEED_USE_DOCKER=False'] | ||
version: [28] | ||
include: | ||
- os: ubuntu-latest | ||
config: 'SITESPEED_USE_DOCKER=True' | ||
version: 28 | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.13' # Version range or exact version of a Python version to use, using SemVer's version range syntax | ||
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | ||
- name: Setup dependencies using pip | ||
run: pip install -r requirements.txt | ||
- name: Java Version | ||
run: java -version | ||
- name: Setup Node.js (v4 version 20.x) | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
shell: bash | ||
name: Setup Google Chrome browser (ONLY used for Sitespeed) | ||
run: | | ||
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | ||
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | ||
sudo apt-get update | ||
sudo apt-get --only-upgrade install google-chrome-stable | ||
google-chrome --version | ||
- name: Setup npm packages | ||
run: npm install --omit=dev | ||
timeout-minutes: 30 | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
name: RUNNING TEST - LINUX | ||
run: | | ||
python default.py -t ${{ matrix.version }} -r -u https://msb.se?webperf-core-test-28 -o data/testresult-${{ matrix.version }}.json --setting ${{ matrix.config }} --setting tests.sitespeed.xvfb=true --setting general.cache.use=true --setting general.cache.max-age=5256000 --setting general.cache.folder=unittests | ||
python .github/workflows/verify_result.py -t ${{ matrix.version }} | ||
- if: ${{ matrix.os == 'windows-latest' }} | ||
name: RUNNING TEST - WINDOWS | ||
run: | | ||
python default.py -t ${{ matrix.version }} -r -u https://msb.se?webperf-core-test-28 -o data\testresult-${{ matrix.version }}.json --setting ${{ matrix.config }} --setting general.cache.use=true --setting general.cache.max-age=5256000 --setting general.cache.folder=unittests | ||
python .github\workflows\verify_result.py -t ${{ matrix.version }} |
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,92 @@ | ||
name: "Regression Test - JS Linting Test" | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
- '**software-full.json' | ||
- '**software-sources.json' | ||
- '**update-software.yml' | ||
- '**update_software_helper.py' | ||
- '**software-rules.json' | ||
- 'Dockerfile' | ||
- '**regression-test-404.yml' | ||
- '**regression-test-a11y-statement.yml' | ||
- '**regression-test-css.yml' | ||
- '**regression-test-docker-image.yml' | ||
- '**regression-test-email.yml' | ||
- '**regression-test-energy-efficiency.yml' | ||
- '**regression-test-google-lighthouse-based.yml' | ||
- '**regression-test-html.yml' | ||
- '**regression-test-http.yml' | ||
- '**regression-test-lint-css.yml' | ||
- '**regression-test-lint-html.yml' | ||
- '**regression-test-pa11y.yml' | ||
- '**regression-test-sitespeed-browsertime-har.yml' | ||
- '**regression-test-sitespeed.yml' | ||
- '**regression-test-software.yml' | ||
- '**regression-test-standard-files.yml' | ||
- '**regression-test-tracking.yml' | ||
- '**regression-test-translations.yml' | ||
- '**regression-test-webbkoll.yml' | ||
- '**regression-test-ylt.yml' | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
config: ['SITESPEED_USE_DOCKER=False'] | ||
version: [29] | ||
include: | ||
- os: ubuntu-latest | ||
config: 'SITESPEED_USE_DOCKER=True' | ||
version: 29 | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Setup python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.13' # Version range or exact version of a Python version to use, using SemVer's version range syntax | ||
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | ||
- name: Setup dependencies using pip | ||
run: pip install -r requirements.txt | ||
- name: Java Version | ||
run: java -version | ||
- name: Setup Node.js (v4 version 20.x) | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
shell: bash | ||
name: Setup Google Chrome browser (ONLY used for Sitespeed) | ||
run: | | ||
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add - | ||
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' | ||
sudo apt-get update | ||
sudo apt-get --only-upgrade install google-chrome-stable | ||
google-chrome --version | ||
- name: Setup npm packages | ||
run: npm install --omit=dev | ||
timeout-minutes: 30 | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
name: RUNNING TEST - LINUX (no-errors) | ||
run: | | ||
python default.py -t ${{ matrix.version }} -r -u https://webperf.se?webperf-core-test-29-no-errors -o data/testresult-${{ matrix.version }}.json --setting ${{ matrix.config }} --setting tests.sitespeed.xvfb=true --setting general.cache.use=true --setting general.cache.max-age=5256000 --setting general.cache.folder=unittests | ||
python .github/workflows/verify_result.py -t ${{ matrix.version }} | ||
- if: ${{ matrix.os == 'windows-latest' }} | ||
name: RUNNING TEST - WINDOWS (no-errors) | ||
run: | | ||
python default.py -t ${{ matrix.version }} -r -u https://webperf.se?webperf-core-test-29-no-errors -o data\testresult-${{ matrix.version }}.json --setting ${{ matrix.config }} --setting general.cache.use=true --setting general.cache.max-age=5256000 --setting general.cache.folder=unittests | ||
python .github\workflows\verify_result.py -t ${{ matrix.version }} | ||
- if: ${{ matrix.os == 'ubuntu-latest' }} | ||
name: RUNNING TEST - LINUX (with-errors) | ||
run: | | ||
python default.py -t ${{ matrix.version }} -r -u https://webperf.se?webperf-core-test-29-with-errors -o data/testresult-${{ matrix.version }}.json --setting ${{ matrix.config }} --setting tests.sitespeed.xvfb=true --setting general.cache.use=true --setting general.cache.max-age=5256000 --setting general.cache.folder=unittests | ||
python .github/workflows/verify_result.py -t ${{ matrix.version }} | ||
- if: ${{ matrix.os == 'windows-latest' }} | ||
name: RUNNING TEST - WINDOWS (with-errors) | ||
run: | | ||
python default.py -t ${{ matrix.version }} -r -u https://webperf.se?webperf-core-test-29-with-errors -o data\testresult-${{ matrix.version }}.json --setting ${{ matrix.config }} --setting general.cache.use=true --setting general.cache.max-age=5256000 --setting general.cache.folder=unittests | ||
python .github\workflows\verify_result.py -t ${{ matrix.version }} |
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
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
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
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,4 +1,4 @@ | ||
FROM sitespeedio/sitespeed.io:36.2.5 | ||
FROM sitespeedio/sitespeed.io:36.4.1 | ||
|
||
USER root | ||
|
||
|
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
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
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,59 @@ | ||
{ | ||
"overlays": [ | ||
{ | ||
"name": "AccessiBe", | ||
"description": "Sometimes referred to as Accessiway?", | ||
"website": "https://accessibe.com", | ||
"urls": [ | ||
{ | ||
"url": "https://acsbapp.com/" | ||
}, | ||
{ | ||
"url": "https://cdn.acsbapp.com" | ||
}, | ||
{ | ||
"url": "https://accesswidget-log-receiver.acsbapp.com/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "EqualWeb", | ||
"description": "", | ||
"website": "https://www.equalweb.com", | ||
"urls": [ | ||
{ | ||
"url": "https://aacdn.nagich.com/" | ||
}, | ||
{ | ||
"url": "https://ocr.nagich.com/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "UserWay", | ||
"description": "", | ||
"website": "https://userway.org", | ||
"urls": [ | ||
{ | ||
"url": "https://cdn.userway.org/" | ||
}, | ||
{ | ||
"url": "https://api.userway.org/" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "AudioEye", | ||
"description": "", | ||
"website": "https://www.audioeye.com", | ||
"urls": [ | ||
{ | ||
"url": "https://wsmcdn.audioeye.com/" | ||
}, | ||
{ | ||
"url": "https://wsv3cdn.audioeye.com/" | ||
} | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.