Add searx_extra package

Split the utils directory into:
* searx_extra contains update scripts, standalone_searx.py
* utils contains the files to build and setup searx.
This commit is contained in:
Alexandre Flament 2021-02-25 17:42:52 +01:00
parent 111d38cd8f
commit b8cd326464
21 changed files with 47 additions and 75 deletions

View file

@ -11,12 +11,12 @@ jobs:
strategy:
matrix:
fetch:
- ahmia_blacklist
- currencies
- external_bangs
- firefox_version
- languages
- wikidata_units
- update_ahmia_blacklist.py
- update_currencies.py
- update_external_bangs.py
- update_firefox_version.py
- update_languages.py
- update_wikidata_units.py
steps:
- name: Checkout
uses: actions/checkout@v2
@ -45,10 +45,10 @@ jobs:
- name: Fetch data
env:
FETCH_SCRIPT: utils/fetch_${{ matrix.fetch }}.py
FETCH_SCRIPT: ./searx_extra/update/${{ matrix.fetch }}
run: |
source local/py3/bin/activate
python $FETCH_SCRIPT
$FETCH_SCRIPT
- name: Create Pull Request
id: cpr