|
13 | 13 | jobs:
|
14 | 14 | macos:
|
15 | 15 | runs-on: macos-latest
|
16 |
| - strategy: |
17 |
| - matrix: |
18 |
| - python-version: ["3.7"] |
19 | 16 | steps:
|
20 | 17 | - uses: actions/checkout@v3
|
21 | 18 | - uses: actions/setup-python@v4
|
22 | 19 | with:
|
23 |
| - python-version: ${{ matrix.python-version }} |
| 20 | + python-version: "3.7" |
24 | 21 | - name: Install Rust toolchain
|
25 | 22 | uses: actions-rs/toolchain@v1
|
26 | 23 | with:
|
|
32 | 29 | uses: messense/maturin-action@v1
|
33 | 30 | with:
|
34 | 31 | target: x86_64
|
35 |
| - args: -i python --release --out dist |
36 |
| - - name: Install build wheel - x86_64 |
37 |
| - run: | |
38 |
| - pip install --force-reinstall dist/robyn*.whl |
39 |
| - cd ~ && python -c 'import robyn' |
| 32 | + args: -i python --release --out dist --no-sdist |
40 | 33 | - name: Build wheels - universal2
|
41 | 34 | uses: messense/maturin-action@v1
|
42 | 35 | with:
|
|
57 | 50 | - uses: actions/checkout@v3
|
58 | 51 | - uses: actions/setup-python@v4
|
59 | 52 | with:
|
60 |
| - python-version: ${{ matrix.python-version }} |
| 53 | + python-version: "3.7" |
61 | 54 | architecture: ${{ matrix.target }}
|
62 | 55 | - name: Install Rust toolchain
|
63 | 56 | uses: actions-rs/toolchain@v1
|
|
80 | 73 | runs-on: ubuntu-latest
|
81 | 74 | strategy:
|
82 | 75 | matrix:
|
83 |
| - python-version: ["3.7"] |
84 | 76 | target: [x86_64, i686]
|
85 | 77 | steps:
|
86 | 78 | - uses: actions/checkout@v3
|
|
92 | 84 | default: true
|
93 | 85 | - uses: actions/setup-python@v4
|
94 | 86 | with:
|
95 |
| - python-version: ${{ matrix.python-version }} |
| 87 | + python-version: "3.7" |
96 | 88 | - name: Build Wheels
|
97 | 89 | uses: messense/maturin-action@v1
|
98 | 90 | with:
|
@@ -120,7 +112,7 @@ jobs:
|
120 | 112 | with:
|
121 | 113 | target: ${{ matrix.target }}
|
122 | 114 | manylinux: auto
|
123 |
| - args: -i python3.9 --release --out dist --no-sdist |
| 115 | + args: -i python3.7 --release --out dist --no-sdist |
124 | 116 | - name: Upload wheels
|
125 | 117 | uses: actions/upload-artifact@v3
|
126 | 118 | with:
|
|
0 commit comments