adapt for Plone 4.3 #932
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: Plone RESTAPI CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, 3.7] | |
plone-version: [5.2] | |
steps: | |
# git checkout | |
- uses: actions/checkout@v2 | |
# python setup | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# python cache | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# python install | |
- run: pip install virtualenv | |
- run: pip install wheel | |
- name: pip install | |
run: pip install -r requirements.txt | |
# buildout | |
- name: buildout | |
run: buildout -t 10 -c plone-${{ matrix.plone-version }}.x.cfg code-analysis:return-status-codes=True | |
env: | |
CI: true | |
# code analysis | |
- name: code analysis | |
run: bin/code-analysis | |
# build sphinx | |
- name: sphinx | |
run: if [ "${{ matrix.plone-version }}" == "5.2" ] && [ ${{ matrix.python-version }} == '3.8' ]; then bin/sphinxbuilder; fi | |
# test | |
- name: test | |
run: bin/test | |
# test no uncommited changes | |
- name: test no uncommited changes | |
run: bin/test-no-uncommitted-doc-changes | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
PLONE_VERSION: ${{ matrix.plone-version }} | |
# test sphinx warnings | |
- name: sphinx | |
run: if [ "${{ matrix.plone-version }}" == "5.2" ] && [ ${{ matrix.python-version }} == '3.8' ]; then bin/test-no-sphinx-warnings; fi | |
build-py2: | |
runs-on: ubuntu-20.04 | |
container: | |
image: python:2.7.18-buster | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [2.7] | |
plone-version: [5.2, 5.1, 4.3] | |
steps: | |
# git checkout | |
- uses: actions/checkout@v2 | |
# python cache | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
# python install | |
- run: pip install virtualenv | |
- run: pip install wheel | |
- name: pip install | |
run: pip install -r requirements.txt | |
# buildout | |
- name: buildout | |
run: buildout -t 10 -c plone-${{ matrix.plone-version }}.x.cfg code-analysis:return-status-codes=True | |
env: | |
CI: true | |
# code analysis | |
- name: code analysis | |
run: bin/code-analysis | |
# test | |
- name: test | |
run: bin/test | |
# test no uncommited changes | |
- name: test no uncommited changes | |
run: bin/test-no-uncommitted-doc-changes | |
env: | |
PYTHON_VERSION: ${{ matrix.python-version }} | |
PLONE_VERSION: ${{ matrix.plone-version }} |