Skip to content

Commit 0ea3e17

Browse files
committed
fix:build cicd
1 parent 27ce247 commit 0ea3e17

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

.github/workflows/build_linux_only.yml

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Upload x86_64 build artifacts
4444
uses: actions/upload-artifact@v4
4545
with:
46-
name: telemetry_search
46+
name: telemetry_search-x86_64
4747
path: ./build_output/*
4848

4949
build_arm:
@@ -82,7 +82,7 @@ jobs:
8282
- name: Upload ARM build artifacts
8383
uses: actions/upload-artifact@v4
8484
with:
85-
name: telemetry_search
85+
name: telemetry_search-arm
8686
path: ./build_output/*
8787

8888

@@ -99,14 +99,26 @@ jobs:
9999
base: feat/2.3.0
100100
path: bisheng
101101

102-
- name: Download build artifacts
102+
- name: Download x86_64 build artifacts
103103
uses: actions/download-artifact@v4
104104
with:
105-
name: telemetry_search
106-
path: ./telemetry_search
105+
name: telemetry_search-x86_64
106+
path: ./telemetry_search_x86_64
107+
108+
- name: Download ARM build artifacts
109+
uses: actions/download-artifact@v4
110+
with:
111+
name: telemetry_search-arm
112+
path: ./telemetry_search_arm
107113

108114
- name: copy files
109115
run: |
116+
ls -lh ./telemetry_search_x86_64
117+
ls -lh ./telemetry_search_arm
118+
119+
mkdir ./telemetry_search
120+
cp -r ./telemetry_search_x86_64/* ./telemetry_search/
121+
cp -r ./telemetry_search_arm/* ./telemetry_search/
110122
ls -lh ./telemetry_search
111123
cp -r ./telemetry_search ./bisheng/src/backend/bisheng/
112124
ls -lh ./bisheng/src/backend/bisheng/telemetry_search

0 commit comments

Comments
 (0)