@@ -21,12 +21,14 @@ jobs:
21
21
strategy :
22
22
matrix :
23
23
platform :
24
+ # - runner: ubuntu-latest
25
+ # target: x86_64
24
26
- runner : ubuntu-latest
25
- target : x86_64
26
- - runner : windows-latest
27
- target : x64
28
- - runner : macos-14
29
27
target : aarch64
28
+ # - runner: windows-latest
29
+ # target: x64
30
+ # - runner: macos-14
31
+ # target: aarch64
30
32
steps :
31
33
- uses : actions/checkout@v4
32
34
- name : Setup Python
@@ -78,28 +80,26 @@ jobs:
78
80
- run : python3 ./python/scripts/run_quick_test_magika_cli.py
79
81
- run : python3 ./python/scripts/run_quick_test_magika_module.py
80
82
- name : Upload wheels
81
- if : github.event_name != 'pull_request'
83
+ # if: github.event_name != 'pull_request'
82
84
uses : actions/upload-artifact@v4
83
85
with :
84
86
name : wheels-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
85
87
path : dist
86
88
87
- sdist :
88
- runs-on : ubuntu-latest
89
- steps :
90
- - uses : actions/checkout@v4
91
- # TODO(https://github.com/PyO3/maturin/issues/2244): Remove when released.
92
- - run : rm rust/cli/README.md
93
- - run : python3 ./python/scripts/fix_package_version.py
94
- - name : Build sdist
95
- uses : PyO3/maturin-action@v1
96
- with :
97
- command : sdist
98
- args : --out=../dist
99
- working-directory : python
100
- - name : Upload sdist
101
- if : github.event_name != 'pull_request'
102
- uses : actions/upload-artifact@v4
103
- with :
104
- name : wheels-sdist
105
- path : dist
89
+ # sdist:
90
+ # runs-on: ubuntu-latest
91
+ # steps:
92
+ # - uses: actions/checkout@v4
93
+ # - run: python3 ./python/scripts/fix_package_version.py
94
+ # - name: Build sdist
95
+ # uses: PyO3/maturin-action@v1
96
+ # with:
97
+ # command: sdist
98
+ # args: --out=../dist
99
+ # working-directory: python
100
+ # - name: Upload sdist
101
+ # # if: github.event_name != 'pull_request'
102
+ # uses: actions/upload-artifact@v4
103
+ # with:
104
+ # name: wheels-sdist
105
+ # path: dist
0 commit comments