use /etc/clonetab to provide devices to be cloned #2
This file contains hidden or 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
| --- | |
| # vi: ts=2 sw=2 et: | |
| # SPDX-License-Identifier: LGPL-2.1-or-later | |
| # https://github.com/marketplace/actions/super-linter | |
| name: Lint Code Base | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - v[0-9]+-stable | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Lint Code Base | |
| runs-on: ubuntu-24.04 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Repo checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| # We need a full repo clone | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: super-linter/super-linter/slim@12562e48d7059cf666c43a4ecb0d3b5a2b31bd9e | |
| env: | |
| DEFAULT_BRANCH: main | |
| MULTI_STATUS: false | |
| VALIDATE_ALL_CODEBASE: false | |
| VALIDATE_GITHUB_ACTIONS: true | |
| LINTER_RULES_PATH: .github/linters | |
| GITHUB_ACTIONS_CONFIG_FILE: actionlint.yml | |
| ENABLE_GITHUB_PULL_REQUEST_SUMMARY_COMMENT: false | |
| - uses: systemd/mkosi@4b18ea8395e9cc2b1d247be93944f5539affe964 | |
| - name: Check that tabs are not used in Python code | |
| run: sh -c '! git grep -P "\\t" -- src/core/generate-bpf-delegate-configs.py src/boot/generate-hwids-section.py src/ukify/ukify.py test/integration-tests/integration-test-wrapper.py' | |
| - name: Build tools tree | |
| run: | | |
| tee mkosi/mkosi.local.conf <<EOF | |
| [Build] | |
| ToolsTreeDistribution=fedora | |
| ToolsTreeRelease=rawhide | |
| EOF | |
| mkosi -f box -- true | |
| - name: Run mypy | |
| run: | | |
| mkosi box -- mypy --version | |
| mkosi box -- mypy src/core/generate-bpf-delegate-configs.py src/boot/generate-hwids-section.py src/test/generate-sym-test.py src/ukify/ukify.py test/integration-tests/integration-test-wrapper.py | |
| - name: Run ruff format | |
| run: | | |
| mkosi box -- ruff --version | |
| if ! mkosi box -- ruff format --check src/core/generate-bpf-delegate-configs.py src/boot/generate-hwids-section.py src/test/generate-sym-test.py src/ukify/ukify.py test/integration-tests/integration-test-wrapper.py | |
| then | |
| echo "Please run 'ruff format' on the above files or apply the diffs below manually" | |
| mkosi box -- ruff format --check --quiet --diff src/core/generate-bpf-delegate-configs.py src/boot/generate-hwids-section.py src/test/generate-sym-test.py src/ukify/ukify.py test/integration-tests/integration-test-wrapper.py | |
| fi | |
| - name: Run ruff check | |
| run: | | |
| mkosi box -- ruff --version | |
| mkosi box -- ruff check src/core/generate-bpf-delegate-configs.py src/boot/generate-hwids-section.py src/test/generate-sym-test.py src/ukify/ukify.py test/integration-tests/integration-test-wrapper.py | |
| - name: Configure meson | |
| run: mkosi box -- env CC=clang CXX=clang++ meson setup build | |
| - name: Run clang-tidy | |
| run: mkosi box -- meson test -C build --suite=clang-tidy --print-errorlogs --no-stdsplit --quiet | |
| - name: Build with musl | |
| run: mkosi box -- .github/workflows/build-test-musl.sh |