From 492544ede7a49c7f23622158cdc2fecc4421f890 Mon Sep 17 00:00:00 2001 From: richard Date: Sun, 26 Jun 2022 03:03:56 +0100 Subject: [PATCH] try rpi build --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14f8eed..e3ee5a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -149,6 +149,23 @@ jobs: path: dist/* + build-rpi: + runs-on: rpi + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + + - name: Build raylib-python-cffi + run: | + python setup.py bdist_wheel + + - name: Upload build Artifact wheel + uses: actions/upload-artifact@v2.2.4 + with: + name: wheel + path: dist/* + build-windows: # The type of runner that the job will run on runs-on: windows-2019