File: circleci.yml

package info (click to toggle)
matplotlib 3.10.7%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 72,820 kB
  • sloc: python: 147,545; cpp: 62,988; objc: 1,679; ansic: 1,426; javascript: 788; makefile: 92; sh: 53
file content (75 lines) | stat: -rw-r--r-- 2,842 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
name: "CircleCI artifact handling"
on: [status]
jobs:
  circleci_artifacts_redirector_job:
    if: "${{ github.event.context == 'ci/circleci: docs-python3' }}"
    permissions:
      statuses: write
    runs-on: ubuntu-latest
    name: Run CircleCI artifacts redirector
    steps:
      - name: GitHub Action step
        uses:
          scientific-python/circleci-artifacts-redirector-action@4e13a10d89177f4bfc8007a7064bdbeda848d8d1  # v1.0.0
        with:
          repo-token: ${{ secrets.GITHUB_TOKEN }}
          api-token: ${{ secrets.CIRCLECI_TOKEN }}
          artifact-path: 0/doc/build/html/index.html
          circleci-jobs: docs-python3
          job-title: View the built docs

  post_warnings_as_review:
    if: "${{ github.event.context == 'ci/circleci: docs-python3' }}"
    permissions:
      contents: read
      checks: write
      pull-requests: write
    runs-on: ubuntu-latest
    name: Post warnings/errors as review
    steps:
      - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683  # v4.2.2
        with:
          persist-credentials: false

      - name: Fetch result artifacts
        id: fetch-artifacts
        env:
          target_url: "${{ github.event.target_url }}"
        run: |
          python .circleci/fetch_doc_logs.py "${target_url}"

      - name: Set up reviewdog
        if: "${{ steps.fetch-artifacts.outputs.count != 0 }}"
        uses: reviewdog/action-setup@3f401fe1d58fe77e10d665ab713057375e39b887  # v1.3.0
        with:
          reviewdog_version: latest

      - name: Post review
        if: "${{ steps.fetch-artifacts.outputs.count != 0 }}"
        env:
          REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          REVIEWDOG_SKIP_DOGHOUSE: "true"
          CI_COMMIT: ${{ github.event.sha }}
          CI_REPO_OWNER: ${{ github.event.repository.owner.login }}
          CI_REPO_NAME: ${{ github.event.repository.name }}
        run: |
          # The 'status' event does not contain information in the way that
          # reviewdog expects, so we unset those so it reads from the
          # environment variables we set above.
          unset GITHUB_ACTIONS GITHUB_EVENT_PATH
          cat logs/sphinx-errors-warnings.log | \
            reviewdog \
              -efm '%f\:%l: %tEBUG: %m' \
              -efm '%f\:%l: %tNFO: %m' \
              -efm '%f\:%l: %tARNING: %m' \
              -efm '%f\:%l: %tRROR: %m' \
              -efm '%f\:%l: %tEVERE: %m' \
              -efm '%f\:%s: %tARNING: %m' \
              -efm '%f\:%s: %tRROR: %m' \
              -name=sphinx -tee -fail-on-error=false \
              -reporter=github-check -filter-mode=nofilter
          cat logs/sphinx-deprecations.log | \
            reviewdog \
              -efm '%f\:%l: %m' \
              -name=examples -tee -reporter=github-check -filter-mode=nofilter