Skip to content

Commit 00e7fb6

Browse files
committed
so*
1 parent e8f627c commit 00e7fb6

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-native-nuget.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
# - { title: osx-arm64, rid: osx-arm64, url: https://paddle-inference-lib.bj.bcebos.com/3.0.0/cxx_c/MacOS/m1_clang_noavx_accelerate_blas/paddle_inference_c.tgz }
2424

2525
steps:
26-
- name: Cache Paddle Inference C API Archive
26+
- name: Cache
2727
id: cache-inference-lib
2828
uses: actions/cache@v4
2929
with:
3030
path: paddle_inference_c
3131
key: ${{ matrix.url }}
3232

33-
- name: Download/Extract Paddle Inference C API Archive
33+
- name: Download
3434
if: steps.cache-inference-lib.outputs.cache-hit != 'true'
3535
run: |
3636
wget -q -O archive_file.tmp ${{ matrix.url }}
@@ -42,7 +42,7 @@ jobs:
4242
fi
4343
rm archive_file.tmp
4444
45-
- name: Show Extracted Paddle Inference Library Contents
45+
- name: Show Downloaded
4646
run: |
4747
ls -lR paddle_inference_c
4848
@@ -52,7 +52,7 @@ jobs:
5252
if [[ "${{ matrix.rid }}" == "win-x64" ]]; then
5353
find paddle_inference_c -type f \( -iname "*.dll" \) -exec cp {} nuget/ \;
5454
elif [[ "${{ matrix.rid }}" == "linux-x64" ]]; then
55-
find paddle_inference_c -type f \( -iname "*.so" \) -exec cp {} nuget/ \;
55+
find paddle_inference_c -type f \( -iname "*.so*" \) -exec cp {} nuget/ \;
5656
elif [[ "${{ matrix.rid }}" == "osx-x64" || "${{ matrix.rid }}" == "osx-arm64" ]]; then
5757
find paddle_inference_c -type f \( -iname "*.dylib" \) -exec cp {} nuget/ \;
5858
fi

0 commit comments

Comments
 (0)