Skip to content

Commit

Permalink
ci: build Python wheels for deltachat-rpc-server
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Oct 21, 2023
1 parent 0227bbc commit e099ee0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/deltachat-rpc-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Build
- name: Build deltachat-rpc-server binaries
run: sh scripts/zig-rpc-server.sh

- name: Build deltachat-rpc-server Python wheels and source package
run: scripts/wheel-rpc-server.sh

- name: Upload x86_64 binary
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -57,6 +60,15 @@ jobs:
path: target/armv7-unknown-linux-musleabihf/release/deltachat-rpc-server
if-no-files-found: error

- name: Upload Python wheels and source package
uses: actions/upload-artifact@v3
with:
name: deltachat-rpc-server-wheels
path:
| dist/*.whl
| dist/*.tar.gz
if-no-files-found: error

build_windows:
name: Build deltachat-rpc-server for Windows
strategy:
Expand Down

0 comments on commit e099ee0

Please sign in to comment.