custom install PyYAML 5.4.1 with cython<3.0.0 #100
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 Docker Official Image | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [5.2.13] | |
os: [alpine, debian, python2, python37] | |
steps: | |
- name: Extract version | |
id: version | |
env: | |
VERSION: ${{ matrix.version }} | |
run: echo ::set-output name=major::${VERSION%.*} | |
- uses: actions/checkout@v2 | |
- name: Build & Test Plone ${{ matrix.version }} - ${{ matrix.os }} | |
run: | | |
docker build -t plone:${{ matrix.version }}-${{ matrix.os }} ${{ steps.version.outputs.major }}/${{ matrix.version }}/${{ matrix.os }} | |
git clone https://github.com/docker-library/official-images.git && cd official-images | |
./test/run.sh plone:${{ matrix.version }}-${{ matrix.os }} |