Skip to content

Commit

Permalink
fix(cI): Install coreutils in mac github workers for smoke test (feas…
Browse files Browse the repository at this point in the history
…t-dev#3563)

Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals authored Mar 25, 2023
1 parent 1289f3f commit e7421c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
echo $HIGHEST_SEMVER_TAG
build-python-wheel:
name: Build wheels on ${{ matrix.os }}
name: Build wheels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -164,6 +164,9 @@ jobs:
with:
name: wheels
path: dist
- name: Install OS X dependencies
if: matrix.os == 'macos-10.15'
run: brew install coreutils
- name: Install wheel
if: ${{ !matrix.from-source }}
# try to install all wheels; only the current platform wheel should be actually installed
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:


publish-web-ui-npm:
if: github.repository == 'feast-dev/feast'
if: github.repository == 'feast-dev/feast' and github.event.inputs.publish_ui == 'true'
needs: [validate_version_bumps, get_dry_release_versions]
runs-on: ubuntu-latest
env:
Expand All @@ -115,7 +115,6 @@ jobs:
working-directory: ./ui
run: yarn build:lib
- name: Publish UI package
if: github.event.inputs.publish_ui == 'true'
working-directory: ./ui
run: npm publish
env:
Expand Down

0 comments on commit e7421c1

Please sign in to comment.