drivers/tmp117: TMP117 driver #35530
Workflow file for this run
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
| name: static-tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - staging | |
| - trying | |
| tags: | |
| - '[0-9][0-9][0-9][0-9].[0-9][0-9]-RC[0-9]*' | |
| - '[0-9][0-9][0-9][0-9].[0-9][0-9]' | |
| - '[0-9][0-9][0-9][0-9].[0-9][0-9].*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| merge_group: | |
| jobs: | |
| static-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| with: | |
| fetch-depth: 0 | |
| - name: Set CI_BASE_BRANCH | |
| run: | | |
| # Figure out the correct base branch to work on... | |
| if [ -n "${{ github.base_ref }}" ]; then | |
| echo "CI_BASE_BRANCH=${{ github.base_ref }}" >> $GITHUB_ENV | |
| elif [ -n "${{ github.event.merge_group.base_ref }}" ]; then | |
| echo "CI_BASE_BRANCH=${{ github.event.merge_group.base_ref }}" | sed s.=refs/heads/.=. >> $GITHUB_ENV | |
| fi | |
| echo "Base Branch: origin/$(grep '^CI_BASE_BRANCH=' $GITHUB_ENV | cut -d= -f2-)" | |
| - name: Setup git | |
| run: | | |
| # Configuring and rebasing the repository... | |
| # Name and E-Mail required for rebasing | |
| git config user.name "statictester" | |
| git config user.email "statictester@riot.invalid" | |
| # Note: CI_BASE_BRANCH is empty when not in a PR | |
| if [ -n "${CI_BASE_BRANCH}" ]; then | |
| git fetch origin ${CI_BASE_BRANCH}:${CI_BASE_BRANCH} --no-tags | |
| echo "Rebasing PR branch onto origin/${CI_BASE_BRANCH}..." | |
| git rebase origin/${CI_BASE_BRANCH} | |
| else | |
| git config diff.renameLimit 16384 | |
| fi | |
| git config apply.whitespace nowarn | |
| - name: Fetch riot/static-test-tools Docker image | |
| run: docker pull riot/static-test-tools:latest | |
| - name: Run static-tests on `riot/static-test-tools` | |
| run: | | |
| # Start docker container and run tests... | |
| # Note: ${CI_BASE_BRANCH} is empty when not in a PR | |
| docker run --rm \ | |
| -e CI_BASE_BRANCH \ | |
| -e GITHUB_RUN_ID=${GITHUB_RUN_ID} \ | |
| -v $(pwd):/data/riotbuild \ | |
| riot/static-test-tools:latest \ | |
| make static-test |