File: cd.yml

package info (click to toggle)
mpi4py 4.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 4,560 kB
  • sloc: python: 35,306; ansic: 16,482; sh: 837; makefile: 618; cpp: 193; f90: 178
file content (331 lines) | stat: -rw-r--r-- 7,960 bytes parent folder | download | duplicates (2)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
name: cd

on:  # yamllint disable-line rule:truthy
  schedule:
    - cron: '30 0 * * 0'
  pull_request:
    branches:
      - master
    paths:
      - 'cibw/*'
      - '.github/workflows/cd.yml'
      - '.github/workflows/cd-*.yml'
  release:
    types:
      - published
  workflow_dispatch:
    inputs:
      python-tag:
        description: "CPython/PyPy tag ({cp,pp}3{8..14})"
        default: ''
        required: false
        type: string
      publish-pypi:
        description: 'Publish to PyPI'
        required: false
        type: boolean
        default: false
      publish-testpypi:
        description: 'Publish to TestPyPI'
        required: false
        type: boolean
        default: false
      publish-anaconda:
        description: 'Publish to Anaconda'
        required: false
        type: boolean
        default: false

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

permissions:
  contents: read

jobs:

  docs:
    if: ${{ github.event_name != 'workflow_dispatch' }}
    uses: ./.github/workflows/cd-docs.yml

  sdist:
    uses: ./.github/workflows/cd-sdist.yml

  wheel-Linux:
    uses: ./.github/workflows/cd-wheel.yml
    with:
      os-arch: Linux
      python-tag: ${{ inputs.python-tag }}

  wheel-macOS:
    uses: ./.github/workflows/cd-wheel.yml
    with:
      os-arch: macOS
      python-tag: ${{ inputs.python-tag }}

  wheel-Windows:
    uses: ./.github/workflows/cd-wheel.yml
    with:
      os-arch: Windows
      python-tag: ${{ inputs.python-tag }}

  publish-pypi:
    if: |
      inputs.publish-pypi ||
      github.event_name == 'release'
    runs-on: ubuntu-latest
    needs:
      - sdist
      - wheel-Linux
      - wheel-macOS
      - wheel-Windows
    environment:
      name: pypi
      url: https://pypi.org/project/mpi4py
    permissions:
      contents: read
      id-token: write
      attestations: write

    steps:

    - uses: step-security/harden-runner@v2
      with:
        egress-policy: audit

    - if: ${{ (inputs.python-tag || '') == '' }}
      name: Download sdist artifact
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: sdist
        merge-multiple: true

    - name: Download wheel artifacts
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: wheel-*
        merge-multiple: true

    - name: Report sha256sum
      run:  |
        # Report sha256sum
        echo '```'     >> "$GITHUB_STEP_SUMMARY"
        sha256sum -b * >> "$GITHUB_STEP_SUMMARY"
        echo '```'     >> "$GITHUB_STEP_SUMMARY"
      working-directory: dist

    - name: Attest artifacts
      uses: actions/attest-build-provenance@v3
      with:
        subject-path: dist/*

    - name: Publish to PyPI
      uses: pypa/gh-action-pypi-publish@release/v1

  publish-testpypi:
    if: |
      inputs.publish-testpypi ||
      github.event_name == 'release'
    runs-on: ubuntu-latest
    needs:
      - sdist
      - wheel-Linux
      - wheel-macOS
      - wheel-Windows
    environment:
      name: testpypi
      url: https://test.pypi.org/project/mpi4py
    permissions:
      contents: read
      id-token: write

    steps:

    - uses: step-security/harden-runner@v2
      with:
        egress-policy: audit

    - if: ${{ (inputs.python-tag || '') == '' }}
      name: Download sdist artifact
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: sdist
        merge-multiple: true

    - name: Download wheel artifacts
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: wheel-*
        merge-multiple: true

    - name: Report sha256sum
      run:  |
        # Report sha256sum
        echo '```'     >> "$GITHUB_STEP_SUMMARY"
        sha256sum -b * >> "$GITHUB_STEP_SUMMARY"
        echo '```'     >> "$GITHUB_STEP_SUMMARY"
      working-directory: dist

    - name: Publish to TestPyPI
      uses: pypa/gh-action-pypi-publish@release/v1
      with:
        repository-url: https://test.pypi.org/legacy/

  publish-anaconda:
    if: |
      inputs.publish-anaconda ||
      github.event_name == 'release' ||
      github.event_name == 'schedule'
    needs:
      - sdist
      - wheel-Linux
      - wheel-macOS
      - wheel-Windows
    runs-on: ubuntu-latest
    environment:
      name: anaconda
      url:  https://anaconda.org/mpi4py/mpi4py

    steps:

    - uses: step-security/harden-runner@v2
      with:
        egress-policy: audit

    - if: ${{ (inputs.python-tag || '') == '' }}
      name: Download sdist artifact
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: sdist
        merge-multiple: true

    - name: Download wheel artifacts
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: wheel-*
        merge-multiple: true

    - name: Report sha256sum
      run:  |
        # Report sha256sum
        echo '```'     >> "$GITHUB_STEP_SUMMARY"
        sha256sum -b * >> "$GITHUB_STEP_SUMMARY"
        echo '```'     >> "$GITHUB_STEP_SUMMARY"
      working-directory: dist

    - name: Setup Micromamba
      uses: mamba-org/setup-micromamba@v2
      with:
        environment-name: ac
        create-args: anaconda-client

    - name: Publish to Anaconda
      run:  |
        # https://pypi.anaconda.org/mpi4py/simple
        anaconda --token "$ANACONDA_TOKEN" \
        upload --user "$ANACONDA_USER" --force \
        dist/*
      env:
        ANACONDA_USER:  mpi4py
        ANACONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
      shell: bash -el {0}

  publish-github-release:
    if: ${{ github.event_name == 'release' }}
    runs-on: ubuntu-latest
    needs: sdist
    environment:
      name: github
      url: https://github.com/mpi4py/mpi4py/releases
    permissions:
      contents: write
      id-token: write
      attestations: write

    steps:

    - uses: step-security/harden-runner@v2
      with:
        egress-policy: audit

    - name: Checkout
      uses: actions/checkout@v5

    - name: Download distribution artifact
      uses: actions/download-artifact@v5
      with:
        path: dist
        pattern: sdist
        merge-multiple: true

    - name: Attest distribution artifact
      uses: actions/attest-build-provenance@v3
      with:
        subject-path: dist/*.tar.gz

    - name: Publish assets to GitHub Releases
      run:  gh release upload $TAG dist/*.tar.gz
      env:
        TAG: ${{ github.event.release.tag_name }}
        GH_TOKEN: ${{ github.token }}

  publish-github-docs:
    if: ${{ github.event_name == 'release' }}
    runs-on: ubuntu-latest
    needs: docs
    environment:
      name: github
      url: https://mpi4py.github.io/mpi4py/

    steps:

    - uses: step-security/harden-runner@v2
      with:
        egress-policy: audit

    - name: Checkout documentation repository
      uses: actions/checkout@v5
      with:
        repository: mpi4py/mpi4py.github.io
        token: ${{ secrets.DOCS_PUBLISH_PAT }}

    - name: Download documentation artifact
      uses: actions/download-artifact@v5
      with:
        name: docs
        path: mpi4py

    - name: Update documentation
      run: |
        # unarchive
        docdir=mpi4py-docs
        unzip -q $docdir.zip
        mv $docdir/version .
        version=$(cat version)
        test ! -d $version
        mv $docdir $version
        rm -f stable
        ln -sf $version stable
      working-directory: mpi4py

    - name: Publish documentation
      run: |
        # publish
        gh api /users/${GITHUB_ACTOR} > actor.json
        git config user.name  "$(jq -r .name  actor.json)"
        git config user.email "$(jq -r .email actor.json)"
        version=$(cat version)
        git add $version stable
        git commit -m $version
        git show --stat
        git push
      working-directory: mpi4py
      env:
        GH_TOKEN: ${{ github.token }}