3131 matrix :
3232 os : [ubuntu-latest, macos-latest, windows-latest]
3333 python-version : ["3.9"]
34+ cibuildwheel : ["cp39"]
3435 node-version : [20.x]
3536
3637 steps :
@@ -44,41 +45,42 @@ jobs:
4445
4546 - uses : actions-ext/node/setup@main
4647 with :
47- version : 20 .x
48+ version : 22 .x
4849
4950 - name : Install dependencies
5051 run : make develop
5152
52- - name : Lint
53- run : make lint
53+ # - name: Lint
54+ # run: make lint
55+ # if: matrix.os == 'ubuntu-latest'
5456
55- - name : Checks
56- run : make checks
57- if : matrix.os == 'ubuntu-latest'
57+ # - name: Checks
58+ # run: make checks
59+ # if: matrix.os == 'ubuntu-latest'
5860
59- - name : Build
60- run : make build
61+ # - name: Build
62+ # run: make build
6163
62- - name : Test
63- run : make coverage
64+ # - name: Test
65+ # run: make coverage
6466
65- - name : Upload test results (Python)
66- uses : actions/upload-artifact@v4
67- with :
68- name : test-results-${{ matrix.os }}-${{ matrix.python-version }}
69- path : ' **/junit.xml'
70- if : ${{ always() }}
67+ # - name: Upload test results (Python)
68+ # uses: actions/upload-artifact@v4
69+ # with:
70+ # name: test-results-${{ matrix.os }}-${{ matrix.python-version }}
71+ # path: '**/junit.xml'
72+ # if: matrix.os == 'ubuntu-latest'
7173
72- - name : Publish Unit Test Results
73- uses : EnricoMi/publish-unit-test-result-action@v2
74- with :
75- files : ' **/junit.xml'
76- if : matrix.os == 'ubuntu-latest'
74+ # - name: Publish Unit Test Results
75+ # uses: EnricoMi/publish-unit-test-result-action@v2
76+ # with:
77+ # files: '**/junit.xml'
78+ # if: matrix.os == 'ubuntu-latest'
7779
78- - name : Upload coverage
79- uses : codecov/codecov-action@v5
80- with :
81- token : ${{ secrets.CODECOV_TOKEN }}
80+ # - name: Upload coverage
81+ # uses: codecov/codecov-action@v5
82+ # with:
83+ # token: ${{ secrets.CODECOV_TOKEN }}
8284
8385 - name : Set up QEMU
8486 uses : docker/setup-qemu-action@v3
@@ -88,21 +90,23 @@ jobs:
8890
8991 - name : Make dist
9092 run : |
91- make dist-rs
92- make dist-py-sdist
93- make dist-py-wheel
94- make dist-check
95- if : matrix.os == 'ubuntu-latest'
96-
97- - name : Make dist
98- run : |
93+ # make dist-rs
94+ # make dist-py-sdist
9995 make dist-py-wheel
10096 make dist-check
10197 env :
102- CIBW_ENVIRONMENT_MACOS : MACOSX_DEPLOYMENT_TARGET=11.0
103- if : matrix.os ! = 'ubuntu-latest'
98+ CIBW_BUILD : " ${{ matrix.cibuildwheel }}-manylinux* "
99+ if : matrix.os = = 'ubuntu-latest'
104100
105- - uses : actions/upload-artifact@v4
106- with :
107- name : dist-${{matrix.os}}
108- path : dist
101+ # - name: Make dist
102+ # run: |
103+ # make dist-py-wheel
104+ # make dist-check
105+ # env:
106+ # CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=11.0
107+ # if: matrix.os != 'ubuntu-latest'
108+
109+ # - uses: actions/upload-artifact@v4
110+ # with:
111+ # name: dist-${{matrix.os}}
112+ # path: dist
0 commit comments