From 63283693aeceb29db0f4c9a9aab11fe34e83f0e8 Mon Sep 17 00:00:00 2001 From: Paul Koch Date: Sun, 28 Jul 2024 02:53:41 -0700 Subject: [PATCH] add powerlift --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85f6dfe0c..d6dc58222 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -240,6 +240,26 @@ jobs: name: bdist path: bld/bdist + powerlift: + runs-on: ubuntu-20.04 + steps: + - name: Check out repo + uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.9" + - name: Build powerlift package + run: | + python -m pip install --upgrade pip setuptools wheel + cd python/powerlift + python setup.py bdist_wheel -d ../../bld/bdist + - name: Publish bdist package + uses: actions/upload-artifact@v4 + with: + name: powerlift + path: bld/bdist + testC: needs: [bld] strategy: