@@ -93,32 +93,33 @@ jobs:
93
93
runs-on : ubuntu-latest
94
94
needs : musllinux_1_2_x86_64_build
95
95
steps :
96
+ - uses : actions/checkout@v2
96
97
- uses : actions/download-artifact@v4
97
98
with :
98
99
name : wheels-musllinux_1_2-x86_64
99
100
path : dist
100
101
- name : Run musllinux x86_64 tests
101
102
run : |
102
- docker run --rm -v ${{ github.workspace }}/dist:/dist:ro congyuwang/musllinux_1_2_x86_64:llvm-19.1.3 bash -c "
103
+ docker run --rm -v ${{ github.workspace }}/dist:/dist:ro -v ${{ github.workspace }}/test:/test:ro congyuwang/musllinux_1_2_x86_64:llvm-19.1.3 bash -c "
103
104
pip install rocksdict --no-index --find-links /dist --force-reinstall || true
104
105
pip install speedict --no-index --find-links /dist --force-reinstall || true
105
- python -m unittest discover -v test"
106
+ python -m unittest discover -v / test"
106
107
107
108
musllinux_1_2_arm64_test :
108
109
runs-on : linux-arm64
109
110
needs : musllinux_1_2_arm64_build
110
111
steps :
112
+ - uses : actions/checkout@v2
111
113
- uses : actions/download-artifact@v4
112
114
with :
113
115
name : wheels-musllinux_1_2-arm64
114
116
path : dist
115
117
- name : Run musllinux arm64 tests
116
118
run : |
117
- docker run --rm -v ${{ github.workspace }}/dist:/dist:ro congyuwang/musllinux_1_2_aarch64:llvm-19.1.3 bash -c "
119
+ docker run --rm -v ${{ github.workspace }}/dist:/dist:ro -v ${{ github.workspace }}/test:/test:ro congyuwang/musllinux_1_2_aarch64:llvm-19.1.3 bash -c "
118
120
pip install rocksdict --no-index --find-links /dist --force-reinstall || true
119
121
pip install speedict --no-index --find-links /dist --force-reinstall || true
120
- python -m unittest discover -v test"
121
-
122
+ python -m unittest discover -v /test"
122
123
release :
123
124
name : Release
124
125
runs-on : ubuntu-latest
0 commit comments