2021-05-22 01:53:26 +02:00
|
|
|
name: Run local instance of lookyloo to test that current repo
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
splash-container:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-03 10:51:50 +01:00
|
|
|
python-version: ["3.8", "3.9", "3.10"]
|
2021-05-22 01:53:26 +02:00
|
|
|
|
|
|
|
steps:
|
2022-09-23 13:15:07 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-05-22 01:53:26 +02:00
|
|
|
|
|
|
|
- name: Set up Python ${{matrix.python-version}}
|
2022-09-23 13:15:03 +02:00
|
|
|
uses: actions/setup-python@v4
|
2021-05-22 01:53:26 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{matrix.python-version}}
|
2022-10-09 21:24:02 +02:00
|
|
|
cache: 'poetry'
|
2021-05-22 01:53:26 +02:00
|
|
|
|
|
|
|
- name: Install and setup redis
|
|
|
|
run: |
|
|
|
|
pushd ..
|
|
|
|
git clone https://github.com/antirez/redis.git
|
|
|
|
pushd redis
|
2022-08-25 13:48:18 +02:00
|
|
|
git checkout 7.0
|
2021-05-22 01:53:26 +02:00
|
|
|
make
|
|
|
|
popd
|
|
|
|
popd
|
|
|
|
|
|
|
|
- name: Install system deps
|
|
|
|
run: |
|
|
|
|
sudo apt install libfuzzy-dev
|
2022-04-25 13:57:31 +02:00
|
|
|
# playwright required deps.
|
|
|
|
sudo apt install libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libxkbcommon0 libxdamage1 libgbm1 libpango-1.0-0 libcairo2 libatspi2.0-0
|
2021-05-22 01:53:26 +02:00
|
|
|
python -m pip install --upgrade pip poetry
|
|
|
|
|
|
|
|
- name: Install & run lookyloo
|
|
|
|
run: |
|
|
|
|
echo LOOKYLOO_HOME="'`pwd`'" > .env
|
|
|
|
cp config/generic.json.sample config/generic.json
|
|
|
|
cp config/modules.json.sample config/modules.json
|
2021-12-03 11:32:11 +01:00
|
|
|
poetry install -vvv
|
2022-04-25 13:57:31 +02:00
|
|
|
poetry run playwright install
|
2021-05-22 01:53:26 +02:00
|
|
|
poetry run tools/validate_config_files.py --check
|
|
|
|
poetry run tools/validate_config_files.py --update
|
|
|
|
poetry run tools/3rdparty.py
|
|
|
|
poetry run start
|
|
|
|
|
|
|
|
- name: Install pylookyloo and run test
|
|
|
|
run: |
|
|
|
|
git clone https://github.com/Lookyloo/PyLookyloo.git
|
|
|
|
pushd PyLookyloo
|
|
|
|
poetry install
|
2021-05-22 01:58:48 +02:00
|
|
|
poetry run python tests/testing_github.py
|
2021-05-22 01:53:26 +02:00
|
|
|
popd
|
2021-12-03 10:57:50 +01:00
|
|
|
|
|
|
|
- name: Stop instance
|
|
|
|
run: |
|
|
|
|
poetry run stop
|