11
11
runs-on : ubuntu-latest
12
12
strategy :
13
13
matrix :
14
- target : [x86_64, x86, aarch64, armv7, s390x, ppc64le]
14
+ # target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
15
+ target : [x86, aarch64, armv7, s390x, ppc64le]
15
16
steps :
16
17
- uses : actions/checkout@v3
17
18
- uses : actions/setup-python@v4
@@ -37,23 +38,23 @@ jobs:
37
38
# env:
38
39
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
40
40
- windows :
41
- runs-on : windows-latest
42
- strategy :
43
- matrix :
44
- target : [x64, x86]
45
- steps :
46
- - uses : actions/checkout@v3
47
- - uses : actions/setup-python@v4
48
- with :
49
- python-version : ' 3.10'
50
- architecture : ${{ matrix.target }}
51
- - name : Build wheels
52
- uses : PyO3/maturin-action@v1
53
- with :
54
- target : ${{ matrix.target }}
55
- args : --release --out dist --find-interpreter
56
- sccache : ' true'
41
+ # windows:
42
+ # runs-on: windows-latest
43
+ # strategy:
44
+ # matrix:
45
+ # target: [x64, x86]
46
+ # steps:
47
+ # - uses: actions/checkout@v3
48
+ # - uses: actions/setup-python@v4
49
+ # with:
50
+ # python-version: '3.10'
51
+ # architecture: ${{ matrix.target }}
52
+ # - name: Build wheels
53
+ # uses: PyO3/maturin-action@v1
54
+ # with:
55
+ # target: ${{ matrix.target }}
56
+ # args: --release --out dist --find-interpreter
57
+ # sccache: 'true'
57
58
# - name: Upload wheels
58
59
# uses: actions/upload-artifact@v3
59
60
# with:
@@ -67,18 +68,18 @@ jobs:
67
68
# env:
68
69
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69
70
70
- macos :
71
- runs-on : macos-latest
72
- strategy :
73
- matrix :
74
- target : [x86_64, aarch64]
75
- env :
76
- OPENSSL_DIR : /opt/homebrew/Cellar/openssl@3/3.3.1
77
- steps :
78
- - uses : actions/checkout@v3
79
- - uses : actions/setup-python@v4
80
- with :
81
- python-version : ' 3.10'
71
+ # macos:
72
+ # runs-on: macos-latest
73
+ # strategy:
74
+ # matrix:
75
+ # target: [x86_64, aarch64]
76
+ # env:
77
+ # OPENSSL_DIR: /opt/homebrew/Cellar/openssl@3/3.3.1
78
+ # steps:
79
+ # - uses: actions/checkout@v3
80
+ # - uses: actions/setup-python@v4
81
+ # with:
82
+ # python-version: '3.10'
82
83
# - name: Brew update
83
84
# run: brew update
84
85
# - name: brew upgrade
@@ -88,12 +89,12 @@ jobs:
88
89
# - name: Install openssl deps
89
90
# run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && brew install openssl
90
91
91
- - name : Build wheels
92
- uses : PyO3/maturin-action@v1
93
- with :
94
- target : ${{ matrix.target }}
95
- args : --release --out dist --find-interpreter
96
- sccache : ' true'
92
+ # - name: Build wheels
93
+ # uses: PyO3/maturin-action@v1
94
+ # with:
95
+ # target: ${{ matrix.target }}
96
+ # args: --release --out dist --find-interpreter
97
+ # sccache: 'true'
97
98
# - name: Upload wheels
98
99
# uses: actions/upload-artifact@v3
99
100
# with:
@@ -129,25 +130,25 @@ jobs:
129
130
# env:
130
131
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
131
132
132
- musllinux :
133
- runs-on : ubuntu-latest
134
- strategy :
135
- matrix :
136
- target :
137
- - x86_64-unknown-linux-musl
138
- - i686-unknown-linux-musl
139
- steps :
140
- - uses : actions/checkout@v3
141
- - uses : actions/setup-python@v4
142
- with :
143
- python-version : ' 3.10'
144
- architecture : x64
145
- - name : Build wheels
146
- uses : messense/maturin-action@v1
147
- with :
148
- target : ${{ matrix.target }}
149
- args : --release --out dist --find-interpreter
150
- manylinux : musllinux_1_2
133
+ # musllinux:
134
+ # runs-on: ubuntu-latest
135
+ # strategy:
136
+ # matrix:
137
+ # target:
138
+ # - x86_64-unknown-linux-musl
139
+ # - i686-unknown-linux-musl
140
+ # steps:
141
+ # - uses: actions/checkout@v3
142
+ # - uses: actions/setup-python@v4
143
+ # with:
144
730A
+ # python-version: '3.10'
145
+ # architecture: x64
146
+ # - name: Build wheels
147
+ # uses: messense/maturin-action@v1
148
+ # with:
149
+ # target: ${{ matrix.target }}
150
+ # args: --release --out dist --find-interpreter
151
+ # manylinux: musllinux_1_2
151
152
# - name: Upload wheels
152
153
# uses: actions/upload-artifact@v3
153
154
# with:
0 commit comments