File: upload-nightly-wheels.yml

package info (click to toggle)
python-awkward 2.8.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 25,144 kB
  • sloc: python: 182,845; cpp: 33,828; sh: 432; makefile: 21; javascript: 8
file content (64 lines) | stat: -rw-r--r-- 2,401 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
name: Upload nightly wheels to Anaconda Cloud

on:
  # Run daily at 2:34 UTC to upload nightly wheels to Anaconda Cloud
  schedule:
    - cron: '34 2 * * *'
  # Run on demand with workflow dispatch
  workflow_dispatch:

permissions:
  actions: read

jobs:
  upload_nightly_wheels:
    name: Upload nightly wheels to Anaconda Cloud
    runs-on: ubuntu-latest
    defaults:
      run:
        # The login shell is necessary for the setup-micromamba setup
        # to work in subsequent jobs.
        # https://github.com/mamba-org/setup-micromamba#about-login-shells
        shell: bash -e -l {0}
    if: github.repository_owner == 'scikit-hep'

    steps:
      # https://github.com/actions/download-artifact/issues/3#issuecomment-1017141067
      - name: Download wheel artifacts from last build on 'main'
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          PROJECT_REPO="scikit-hep/awkward"
          BRANCH="main"
          WORKFLOW_NAME="build-wheels.yml"
          ARTIFACT_PATTERN="awkward*wheel*"  # awkward-wheel and awkward-cpp-wheels-*

          gh run --repo "${PROJECT_REPO}" \
             list --branch "${BRANCH}" \
                  --workflow "${WORKFLOW_NAME}" \
                  --json event,status,conclusion,databaseId > runs.json
          RUN_ID=$(
            jq --compact-output \
              '[
                .[] |
                # Filter on "schedule" and "workflow_dispatch" events to main (nightly build) ...
                select(.event == "schedule" or .event == "workflow_dispatch") |
                # that have completed successfully ...
                select(.status == "completed" and .conclusion == "success")
               ] |
              # and get ID of latest build of wheels.
              sort_by(.databaseId) | reverse | .[0].databaseId' runs.json
          )
          gh run --repo "${PROJECT_REPO}" view "${RUN_ID}"
          gh run --repo "${PROJECT_REPO}" \
             download "${RUN_ID}" --pattern "${ARTIFACT_PATTERN}"

          mkdir dist
          mv ${ARTIFACT_PATTERN}/*.whl dist/
          ls -l dist/

      - name: Upload wheels to Anaconda Cloud as nightlies
        uses: scientific-python/upload-nightly-action@b36e8c0c10dbcfd2e05bf95f17ef8c14fd708dbf # 0.6.2
        with:
          artifacts_path: dist
          anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}