migrate portlets on site root #568
Workflow file for this run
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: tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# Allow to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
# [Python version, tox env] | |
- ["2.7", "plone43-py27"] | |
- ["2.7", "plone50-py27"] | |
- ["2.7", "plone51-py27"] | |
- ["2.7", "plone52-py27"] | |
- ["3.6", "plone52-py36"] | |
- ["3.7", "plone52-py37"] | |
- ["3.8", "plone52-py38"] | |
- ["3.8", "plone60-py38"] | |
- ["3.9", "plone60-py39"] | |
- ["3.10", "plone60-py310"] | |
- ["3.11", "plone60-py311"] | |
runs-on: ubuntu-20.04 | |
name: ${{ matrix.config[1] }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install lxml dev libraries | |
# Needed to avoid error on Plone 5.0. | |
# Error: Please make sure the libxml2 and libxslt development packages are installed. | |
run: sudo apt-get install libxml2-dev libxslt1-dev | |
if: matrix.config[1] == 'plone50-py27' | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.config[0] }} | |
- name: Pip cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ matrix.config[0] }}-${{ hashFiles('setup.*', 'tox.ini') }} | |
restore-keys: | | |
${{ runner.os }}-pip-${{ matrix.config[0] }}- | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Prepare buildout egg cache | |
run: | | |
mkdir ~/.buildout | |
echo "[buildout]" >> ~/.buildout/default.cfg | |
echo "eggs-directory = ~/eggs" >> ~/.buildout/default.cfg | |
- name: Cache eggs | |
uses: actions/cache@v3 | |
with: | |
path: ~/eggs | |
key: ${{ runner.os }}-eggs-${{ matrix.config[0] }}-${{ matrix.config[1] }}-${{ hashFiles('*cfg') }} | |
restore-keys: | | |
${{ runner.os }}-eggs-${{ matrix.config[0] }}-${{ matrix.config[1] }}- | |
${{ runner.os }}-eggs-${{ matrix.config[0] }}- | |
- name: Test | |
run: tox -e ${{ matrix.config[1] }} |