| # Copyright 2023 Google LLC |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| name: Scripts tests |
| |
| on: |
| push: |
| branches: |
| - main |
| - v*-branch |
| paths: |
| - 'scripts/build/**' |
| - 'scripts/cmake/**' |
| - 'scripts/kconfig/**' |
| - '.github/workflows/scripts_tests.yml' |
| pull_request: |
| branches: |
| - main |
| - v*-branch |
| paths: |
| - 'scripts/build/**' |
| - 'scripts/cmake/**' |
| - 'scripts/kconfig/**' |
| - '.github/workflows/scripts_tests.yml' |
| |
| permissions: |
| contents: read |
| |
| concurrency: |
| group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }} |
| cancel-in-progress: true |
| |
| jobs: |
| scripts-tests: |
| name: Scripts tests |
| runs-on: ${{ matrix.os }} |
| timeout-minutes: 45 |
| strategy: |
| matrix: |
| python-version: ['3.12', '3.13'] |
| os: [ubuntu-24.04] |
| steps: |
| - name: checkout |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 |
| with: |
| persist-credentials: false |
| ref: ${{ github.event.pull_request.head.sha }} |
| fetch-depth: 0 |
| |
| - name: Rebase |
| continue-on-error: true |
| env: |
| BASE_REF: ${{ github.base_ref }} |
| PR_HEAD: ${{ github.event.pull_request.head.sha }} |
| run: | |
| git config --global user.email "actions@zephyrproject.org" |
| git config --global user.name "Github Actions" |
| rm -fr ".git/rebase-apply" |
| rm -fr ".git/rebase-merge" |
| git rebase origin/${BASE_REF} |
| git clean -f -d |
| git log --graph --oneline HEAD...${PR_HEAD} |
| |
| - name: Set up Python ${{ matrix.python-version }} |
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 |
| with: |
| python-version: ${{ matrix.python-version }} |
| cache: pip |
| cache-dependency-path: scripts/requirements-actions.txt |
| |
| - name: Install Python packages |
| run: | |
| pip install -r scripts/requirements-actions.txt --require-hashes |
| |
| - name: Run pytest |
| env: |
| ZEPHYR_BASE: ./ |
| run: | |
| echo "Run script tests" |
| pytest ./scripts/build ./scripts/cmake ./scripts/kconfig |