Skip to content

replace legacy option BR2_PACKAGE_CAIRO_PDF with BR2_PACKAGE_CAIRO_ZLIB #145

replace legacy option BR2_PACKAGE_CAIRO_PDF with BR2_PACKAGE_CAIRO_ZLIB

replace legacy option BR2_PACKAGE_CAIRO_PDF with BR2_PACKAGE_CAIRO_ZLIB #145

Workflow file for this run

# thinRoot Continious Integration Check Workflow
# yamllint disable rule:truthy
---
name: CI Build
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
# default read-only permission
permissions:
contents: read
jobs:
skip_check:
name: Duplicate Check
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.check.outputs.should_skip }}
steps:
- id: check
uses: fkirc/[email protected]
with:
skip_after_successful_duplicate: 'true'
concurrent_skipping: 'same_content_newer'
linter:
name: Linter Checks
needs: skip_check
if: ${{ needs.skip_check.outputs.should_skip != 'true' }}
runs-on: ubuntu-22.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Check shell scripts
uses: ludeeus/[email protected]
- name: Check yaml files
uses: frenck/[email protected]
- name: Check markdown files
uses: avto-dev/markdown-lint@v1
with:
ignore: '**/node_modules/** **/codemirror/README.md'
- name: Check Package consistency
run: |
pip install flake8
make check