Skip to content

Commit 108668d

Browse files
committed
fix
Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
1 parent d99545e commit 108668d

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,11 @@ jobs:
180180
for f in *.whl; do pip install $f || true; done
181181
- name: Install sdist
182182
if: ${{ matrix.from-source }}
183-
run: pip install dist/*tar.gz
183+
env:
184+
COMPILE_GO=True
185+
run: |
186+
pip install 'grpcio-tools==1.44.0' 'pybindgen==0.22.1'
187+
pip install dist/*tar.gz
184188
- name: Install OS X dependencies
185189
if: matrix.os == 'macos-10.15'
186190
run: brew install coreutils
@@ -192,13 +196,6 @@ jobs:
192196
echo "$TEST_SCRIPT" > run-and-wait.sh
193197
bash run-and-wait.sh feast serve
194198
bash run-and-wait.sh feast ui
195-
- name: Go lib test
196-
if: ${{ !matrix.from-source }}
197-
run: |
198-
feast init test_repo
199-
cd test_repo/
200-
feast apply
201-
echo "$TEST_SCRIPT" > run-and-wait.sh
202199
echo "\ngo_feature_retrieval: True" >> feature_store.yaml
203200
bash run-and-wait.sh feast serve
204201

0 commit comments

Comments
 (0)