From 155496a4217ce6e33a5f75116ae0500c6b2f367a Mon Sep 17 00:00:00 2001 From: Sjoerd Geevers Date: Thu, 19 Sep 2024 14:10:37 +0200 Subject: [PATCH] add build step to pipeline --- .github/workflows/rtc-tools.yml | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/.github/workflows/rtc-tools.yml b/.github/workflows/rtc-tools.yml index fb41fa7..b9a222f 100644 --- a/.github/workflows/rtc-tools.yml +++ b/.github/workflows/rtc-tools.yml @@ -20,24 +20,21 @@ jobs: - run: pip install pre-commit - run: pre-commit run --all-files --show-diff-on-failure - # build: - # needs: style - # runs-on: ubuntu-latest - # container: - # image: python:3.8 - # timeout-minutes: 30 - # steps: - # - uses: actions/checkout@v4.1.0 - # with: - # lfs: true - # - run: pip install tox - # - run: python setup.py sdist bdist_wheel - # - uses: actions/upload-artifact@v4.1.0 - # if: success() - # with: - # name: "${{ github.job }}" - # retention-days: 7 - # path: dist/ + build: + needs: style + runs-on: ubuntu-latest + container: + image: python:3.8 + timeout-minutes: 30 + steps: + - uses: actions/checkout@v4.1.0 + - run: python setup.py sdist bdist_wheel + - uses: actions/upload-artifact@v4 + if: success() + with: + name: "${{ github.job }}" + retention-days: 7 + path: dist/ # test-linux: # needs: build