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

Use GitHub Actions for CI #706

Merged
merged 18 commits into from
Nov 19, 2024
Prev Previous commit
Next Next commit
Build remoting only on Linux and Windows
  • Loading branch information
t-sommer committed Nov 19, 2024
commit 7628183b10cd44a9b0ab2a70744cfa48fe80c115
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
# - run: python -m pip install attrs Jinja2 lark lxml msgpack numpy pywin32 dask[bag] requests matplotlib scipy PyQt5 pyqtgraph PyQtWebEngine kaleido notebook plotly dash-bootstrap-components setuptools wheel
- run: python build_cvode.py
- run: python build_binaries.py
- run: python build_remoting.py
- if: matrix.name == 'linux' || matrix.name == 'windows'
run: python build_remoting.py
- run: python setup.py bdist_wheel
- uses: actions/upload-artifact@v4
with:
Expand Down