Update changelog for 5.12.0+dfsg-1+deb11u2 release #114
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 10 | |
- name: Set up Python | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.8 | |
- name: Install calibre dependencies | |
run: | |
python setup/unix-ci.py install | |
- name: Bootstrap calibre | |
run: | |
python setup/unix-ci.py bootstrap | |
- name: Test calibre | |
run: | |
python setup/unix-ci.py test | |
# archtest: | |
# name: Test on Arch | |
# runs-on: ubuntu-latest | |
# container: | |
# image: 'archlinux/base:latest' | |
# env: | |
# CI: 'true' | |
# steps: | |
# - name: Prepare the container | |
# run: | | |
# pacman -Syu --noconfirm | |
# pacman -S --noconfirm tar | |
# | |
# - name: Checkout source code | |
# uses: actions/checkout@master | |
# with: | |
# fetch-depth: 10 | |
# | |
# - name: Install calibre dependencies | |
# run: setup/arch-ci.sh | |
# | |
# - name: Bootstrap calibre | |
# run: runuser -u ci -- python setup.py bootstrap --ephemeral | |
# | |
# - name: Test calibre | |
# run: | | |
# set -xe | |
# runuser -u ci -- python setup.py test | |
# runuser -u ci -- python setup.py test_rs |