Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Failing h2o_wave installation when building the tour image #2289

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
8 changes: 8 additions & 0 deletions .github/workflows/release-wave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,14 @@ jobs:
working-directory: ./py/tmp/tour/
run: chmod +x .bin/h2o

- name: Copy H2O Wave wheel
run: |
cp py/h2o_wave/dist/h2o_wave-${{ env.VERSION }}-py3-none-manylinux1_x86_64.whl ./py/tmp/tour/

- name: Edit Requirements file
working-directory: ./py/apps/tour/
run: sed -i -r -e "s/h2o_wave==\{\{VERSION\}\}/h2o_wave-${{ env.VERSION }}-py3-none-manylinux1_x86_64.whl/g" requirements.txt

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can this be moved into wave-bundle actions instead? Also please add a comment explaining why it's needed.

- name: Make air-gapped bundle
working-directory: ./py/tmp/tour/
run: |
Expand Down