Merge pull request #376 from cockroacher/pylint-carbon #48
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
name: "Regression Test - Software (Alpha) Test" | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'software-sources.json' | |
- '**update-software.yml' | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
version: [25] | |
config: ['REVIEW_SHOW_IMPROVEMENTS_ONLY=True,SITESPEED_USE_DOCKER=False'] | |
include: | |
- os: ubuntu-latest | |
config: 'REVIEW_SHOW_IMPROVEMENTS_ONLY=True,SITESPEED_USE_DOCKER=True' | |
version: 25 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' # 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: 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 Sitespeed.io npm package (ONLY used for Sitespeed) | |
run: npm install sitespeed.io | |
- if: ${{ matrix.os == 'ubuntu-latest' }} | |
name: Setup config (using SAMPLE-config.py as config.py) - LINUX | |
run: python .github/workflows/verify_result.py -c ${{ matrix.config }} | |
- if: ${{ matrix.os == 'windows-latest' }} | |
name: Setup config (using SAMPLE-config.py as config.py) - WINDOWS | |
run: python .github\workflows\verify_result.py -c ${{ matrix.config }} | |
- if: ${{ matrix.os == 'ubuntu-latest' }} | |
name: RUNNING TEST - LINUX | |
run: | | |
python default.py -t ${{ matrix.version }} -r -i sites.json -o .github/workflows/testresult-${{ matrix.version }}.json | |
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 -i sites.json -o .github\workflows\testresult-${{ matrix.version }}.json | |
python .\.github\workflows\verify_result.py -t ${{ matrix.version }} |