Skip to content

Commit

Permalink
add build step to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
SGeeversAtVortech committed Sep 19, 2024
1 parent 7319782 commit 155496a
Showing 1 changed file with 15 additions and 18 deletions.
33 changes: 15 additions & 18 deletions .github/workflows/rtc-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 155496a

Please sign in to comment.