Skip to content

Commit 104155c

Browse files
authored
chore: Removing no telemetry release since it gives an InvalidMacaroon error (feast-dev#2586)
* chore: Removing no telemetry release since it gives an InvalidMacaroon error Signed-off-by: Danny Chiao <[email protected]> * fix Signed-off-by: Danny Chiao <[email protected]>
1 parent 1f931f6 commit 104155c

File tree

1 file changed

+1
-39
lines changed

1 file changed

+1
-39
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127

128128
publish-python-sdk:
129129
runs-on: ubuntu-latest
130-
needs: [build-python-sdk, build-python-sdk-no-telemetry, build-python-sdk-macos-py310]
130+
needs: [build-python-sdk, build-python-sdk-macos-py310]
131131
steps:
132132
- uses: actions/download-artifact@v2
133133
with:
@@ -175,44 +175,6 @@ jobs:
175175
path: ./wheelhouse/*.whl
176176

177177

178-
build-python-sdk-no-telemetry:
179-
name: Build no telemetry wheels on ${{ matrix.os }}
180-
runs-on: ${{ matrix.os }}
181-
strategy:
182-
matrix:
183-
os: [ ubuntu-latest, macos-10.15 ]
184-
needs: get-version
185-
steps:
186-
- uses: actions/checkout@v2
187-
- run: |
188-
cd sdk/python
189-
sed -i.bak 's/DEFAULT_FEAST_USAGE_VALUE = "True"/DEFAULT_FEAST_USAGE_VALUE = "False"/g' feast/constants.py
190-
sed -i.bak 's/NAME = "feast"/NAME = "feast-no-telemetry"/g' setup.py
191-
- name: Build wheels
192-
uses: pypa/[email protected]
193-
with:
194-
package-dir: sdk/python
195-
env:
196-
CIBW_BUILD: "cp3*_x86_64"
197-
CIBW_SKIP: "cp36-* *-musllinux_x86_64 cp310-macosx_x86_64"
198-
CIBW_ARCHS: "native"
199-
CIBW_ENVIRONMENT: >
200-
COMPILE_GO=True SETUPTOOLS_SCM_PRETEND_VERSION="${{ needs.get-version.outputs.version_without_prefix }}"
201-
CIBW_BEFORE_ALL_LINUX: |
202-
yum install -y golang
203-
CIBW_BEFORE_ALL_MACOS: |
204-
curl -o python.pkg https://www.python.org/ftp/python/3.9.12/python-3.9.12-macosx10.9.pkg
205-
sudo installer -pkg python.pkg -target /
206-
CIBW_BEFORE_BUILD: |
207-
make install-protoc-dependencies
208-
make install-go-proto-dependencies
209-
make install-go-ci-dependencies
210-
211-
- uses: actions/upload-artifact@v2
212-
with:
213-
name: wheels
214-
path: ./wheelhouse/*.whl
215-
216178
build-python-sdk-macos-py310:
217179
runs-on: macos-10.15
218180
env:

0 commit comments

Comments
 (0)