Skip to content

Commit bdb5015

Browse files
committed
download lib on each job
1 parent 5aa8fda commit bdb5015

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/dotnet.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,13 @@ jobs:
113113

114114
- uses: actions/checkout@v4
115115

116+
- name: Download chdb library
117+
run: |
118+
./update_libchdb.sh
119+
# copy to the correct location
120+
cp libchdb.so src/chdb/libchdb.so
121+
ls -lahS src/chdb/libchdb*
122+
116123
- name: Pack
117124
run: |
118125
dotnet pack src/chdb/chdb.csproj -c Release --include-symbols --version-suffix ${{ github.run_number }}
@@ -133,6 +140,13 @@ jobs:
133140
steps:
134141
- uses: actions/checkout@v4
135142

143+
- name: Download chdb library
144+
run: |
145+
./update_libchdb.sh
146+
# copy to the correct location
147+
cp libchdb.so src/chdb/libchdb.so
148+
ls -lahS src/chdb/libchdb*
149+
136150
- name: Pack
137151
run: |
138152
dotnet pack src/chdb-tool/chdb-tool.csproj -c Release --include-symbols --version-suffix ${{ github.run_number }}

0 commit comments

Comments
 (0)