Skip to content

py3.13 runtime

py3.13 runtime #61

Workflow file for this run

name: Build and Release
on: push
jobs:
weasyprint-build:
name: Build WeasyPrint
runs-on: ubuntu-latest
strategy:
matrix:
version: ["3.12", "3.13"]
env:
RUNTIME: ${{ matrix.version }}
steps:
- uses: actions/checkout@v4
- name: Build Layer
run: make build/weasyprint-layer-python${{ matrix.version }}.zip
- name: Test weasyprint
run: |
mkdir output
make test.start.container &
sleep 1
make test.print.report
rm -rf build/opt
env:
TEST_FILENAME: output/report${{ matrix.version }}.pdf
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: WeasyPrint Layer Build
path: build
- name: Upload Test PDF
uses: actions/upload-artifact@v4
with:
name: WeasyPrint Test Results
path: output
weasyprint-release:
name: Release WeasyPrint
runs-on: ubuntu-latest
needs: [weasyprint-build]
steps:
- name: Download build
uses: actions/download-artifact@v4
with:
name: build
- name: Create WeasyPrint Release
if: startsWith(github.ref, 'refs/tags/weasyprint-')
uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981
with:
files: ./build/weasyprint-layer-python*
ghostscript-build:
name: Build GhostScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Layer
run: |
make build/ghostscript-layer.zip
rm -rf build/opt
- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: GhostScript Layer Build
path: build
- name: Create GhostScript Release
if: startsWith(github.ref, 'refs/tags/ghostscript-')
uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981
with:
files: ./build/ghostscript-layer.zip