@@ -152,8 +152,7 @@ jobs:
152
152
153
153
- name : resolve MSRV
154
154
id : resolve-msrv
155
- run :
156
- echo MSRV=`python -c 'import tomllib; print(tomllib.load(open("Cargo.toml", "rb"))["package"]["rust-version"])'` >> $GITHUB_OUTPUT
155
+ run : echo MSRV=`python -c 'import tomllib; print(tomllib.load(open("Cargo.toml", "rb"))["package"]["rust-version"])'` >> $GITHUB_OUTPUT
157
156
158
157
- name : install rust MSRV
159
158
uses : dtolnay/rust-toolchain@master
@@ -357,8 +356,8 @@ jobs:
357
356
- run : npm run test
358
357
359
358
- run : |
360
- ls -lh dist/
361
- ls -l dist/
359
+ ls -lh dist/
360
+ ls -l dist/
362
361
363
362
- uses : actions/upload-artifact@v4
364
363
with :
@@ -434,6 +433,9 @@ jobs:
434
433
- os : linux
435
434
manylinux : musllinux_1_1
436
435
target : aarch64
436
+ - os : linux
437
+ manylinux : musllinux_1_1
438
+ target : armv7
437
439
438
440
# macos;
439
441
# all versions x86_64
@@ -559,7 +561,7 @@ jobs:
559
561
rust-toolchain : ${{ steps.rust-toolchain.outputs.name }}
560
562
docker-options : -e CI
561
563
env :
562
- RUSTFLAGS : " -Cprofile-generate=${{ github.workspace }}/profdata"
564
+ RUSTFLAGS : ' -Cprofile-generate=${{ github.workspace }}/profdata'
563
565
564
566
- name : detect rust host
565
567
run : echo RUST_HOST=$(rustc -Vv | grep host | cut -d ' ' -f 2) >> "$GITHUB_ENV"
@@ -587,7 +589,7 @@ jobs:
587
589
rust-toolchain : ${{steps.rust-toolchain.outputs.name}}
588
590
docker-options : -e CI
589
591
env :
590
- RUSTFLAGS : " -Cprofile-use=${{ github.workspace }}/merged.profdata"
592
+ RUSTFLAGS : ' -Cprofile-use=${{ github.workspace }}/merged.profdata'
591
593
592
594
- run : ${{ matrix.ls || 'ls -lh' }} dist/
593
595
@@ -612,20 +614,20 @@ jobs:
612
614
613
615
- name : list dist files
614
616
run : |
615
- ls -lh dist/
616
- ls -l dist/
617
- echo "`ls dist | wc -l` files"
617
+ ls -lh dist/
618
+ ls -l dist/
619
+ echo "`ls dist | wc -l` files"
618
620
619
621
- name : extract and list sdist file
620
622
run : |
621
- mkdir sdist-files
622
- tar -xvf dist/*.tar.gz -C sdist-files
623
- tree -a sdist-files
623
+ mkdir sdist-files
624
+ tar -xvf dist/*.tar.gz -C sdist-files
625
+ tree -a sdist-files
624
626
625
627
- name : extract and list wheel file
626
628
run : |
627
- ls dist/*cp310-manylinux*x86_64.whl | head -n 1
628
- python -m zipfile --list `ls dist/*cp310-manylinux*x86_64.whl | head -n 1`
629
+ ls dist/*cp310-manylinux*x86_64.whl | head -n 1
630
+ python -m zipfile --list `ls dist/*cp310-manylinux*x86_64.whl | head -n 1`
629
631
630
632
test-builds-arch :
631
633
name : test build on ${{ matrix.target }}-${{ matrix.distro }}
0 commit comments