|
5 | 5 | tags: |
6 | 6 | - "v[0-9]+\\.[0-9]+\\.[0-9]+" |
7 | 7 | - "v[0-9]+\\.[0-9]+\\.[0-9]+-[0-9]+" |
| 8 | + - "fix-macos-wheels" |
8 | 9 |
|
9 | 10 | jobs: |
10 | 11 |
|
11 | | - build_sdist: |
| 12 | + #build_sdist: |
12 | 13 |
|
13 | | - name: "Source distribution" |
14 | | - runs-on: ubuntu-latest |
| 14 | + # name: "Source distribution" |
| 15 | + # runs-on: ubuntu-latest |
15 | 16 |
|
16 | | - steps: |
| 17 | + # steps: |
17 | 18 |
|
18 | | - - name: "Checkout the repository" |
19 | | - uses: actions/checkout@v4 |
20 | | - with: |
21 | | - submodules: true |
| 19 | + # - name: "Checkout the repository" |
| 20 | + # uses: actions/checkout@v4 |
| 21 | + # with: |
| 22 | + # submodules: true |
22 | 23 |
|
23 | | - - name: "Set up Python" |
24 | | - uses: actions/setup-python@v5 |
25 | | - with: |
26 | | - python-version: "3.13" |
| 24 | + # - name: "Set up Python" |
| 25 | + # uses: actions/setup-python@v5 |
| 26 | + # with: |
| 27 | + # python-version: "3.13" |
27 | 28 |
|
28 | | - - name: "Install python dependencies" |
29 | | - run: | |
30 | | - pip install setuptools cffi |
| 29 | + # - name: "Install python dependencies" |
| 30 | + # run: | |
| 31 | + # pip install setuptools cffi |
31 | 32 |
|
32 | | - - name: "Build source distribution" |
33 | | - run: | |
34 | | - python setup.py sdist |
| 33 | + # - name: "Build source distribution" |
| 34 | + # run: | |
| 35 | + # python setup.py sdist |
35 | 36 |
|
36 | | - - name: "Upload artifacts" |
37 | | - uses: actions/upload-artifact@v4 |
38 | | - with: |
39 | | - name: sdist |
40 | | - path: dist/ |
41 | | - retention-days: 1 |
| 37 | + # - name: "Upload artifacts" |
| 38 | + # uses: actions/upload-artifact@v4 |
| 39 | + # with: |
| 40 | + # name: sdist |
| 41 | + # path: dist/ |
| 42 | + # retention-days: 1 |
42 | 43 |
|
43 | 44 | build_wheels: |
44 | 45 |
|
|
49 | 50 | fail-fast: false |
50 | 51 | matrix: |
51 | 52 | os: |
52 | | - - ubuntu-24.04 |
53 | | - - windows-2022 |
| 53 | + #- ubuntu-24.04 |
| 54 | + #- windows-2022 |
54 | 55 | - macos-13 |
55 | 56 |
|
56 | 57 | steps: |
@@ -79,26 +80,26 @@ jobs: |
79 | 80 | path: ./wheelhouse/*.whl |
80 | 81 | retention-days: 1 |
81 | 82 |
|
82 | | - publish_pypi: |
| 83 | + #publish_pypi: |
83 | 84 |
|
84 | | - name: "Publish packages on PyPI" |
85 | | - runs-on: ubuntu-latest |
86 | | - needs: |
87 | | - - build_sdist |
88 | | - - build_wheels |
| 85 | + # name: "Publish packages on PyPI" |
| 86 | + # runs-on: ubuntu-latest |
| 87 | + # needs: |
| 88 | + # - build_sdist |
| 89 | + # - build_wheels |
89 | 90 |
|
90 | | - steps: |
| 91 | + # steps: |
91 | 92 |
|
92 | | - - name: "Download artifacts" |
93 | | - uses: actions/download-artifact@v4 |
| 93 | + # - name: "Download artifacts" |
| 94 | + # uses: actions/download-artifact@v4 |
94 | 95 |
|
95 | | - - name: "Move packages to the dist/ folder" |
96 | | - run: | |
97 | | - mkdir dist/ |
98 | | - mv sdist/* dist/ |
99 | | - mv wheels-*/*.whl dist/ |
| 96 | + # - name: "Move packages to the dist/ folder" |
| 97 | + # run: | |
| 98 | + # mkdir dist/ |
| 99 | + # mv sdist/* dist/ |
| 100 | + # mv wheels-*/*.whl dist/ |
100 | 101 |
|
101 | | - - name: "Publish packages on PyPI" |
102 | | - uses: pypa/gh-action-pypi-publish@release/v1 |
103 | | - with: |
104 | | - password: ${{ secrets.PYPI_API_TOKEN }} |
| 102 | + # - name: "Publish packages on PyPI" |
| 103 | + # uses: pypa/gh-action-pypi-publish@release/v1 |
| 104 | + # with: |
| 105 | + # password: ${{ secrets.PYPI_API_TOKEN }} |
0 commit comments