This repository was archived by the owner on Apr 26, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-28
lines changed
Expand file tree Collapse file tree 2 files changed +3
-28
lines changed Original file line number Diff line number Diff line change 77 # of things breaking (but only build one set of debs)
88 pull_request :
99 push :
10- branches : ["develop"]
10+ branches : ["develop", "release-*" ]
1111
1212 # we do the full build on tags.
1313 tags : ["v*"]
9191
9292 build-sdist :
9393 name : " Build pypi distribution files"
94- runs-on : ubuntu-latest
95- steps :
96- - uses : actions/checkout@v2
97- - uses : actions/setup-python@v2
98- - run : pip install wheel
99- - run : |
100- python setup.py sdist bdist_wheel
101- - uses : actions/upload-artifact@v2
102- with :
103- name : python-dist
104- path : dist/*
94+ uses : " matrix-org/backend-meta/.github/workflows/packaging.yml@v1"
10595
10696 # if it's a tag, create a release and attach the artifacts to it
10797 attach-assets :
Original file line number Diff line number Diff line change 1919 - " check_codestyle"
2020 - " check_isort"
2121 - " mypy"
22- - " packaging"
2322
2423 steps :
2524 - uses : actions/checkout@v2
@@ -48,24 +47,10 @@ jobs:
4847 env :
4948 PULL_REQUEST_NUMBER : ${{ github.event.number }}
5049
51- lint-sdist :
52- runs-on : ubuntu-latest
53- steps :
54- - uses : actions/checkout@v2
55- - uses : actions/setup-python@v2
56- with :
57- python-version : " 3.x"
58- - run : pip install wheel
59- - run : python setup.py sdist bdist_wheel
60- - uses : actions/upload-artifact@v2
61- with :
62- name : Python Distributions
63- path : dist/*
64-
6550 # Dummy step to gate other tests on without repeating the whole list
6651 linting-done :
6752 if : ${{ !cancelled() }} # Run this even if prior jobs were skipped
68- needs : [lint, lint-crlf, lint-newsfile, lint-sdist ]
53+ needs : [lint, lint-crlf, lint-newsfile]
6954 runs-on : ubuntu-latest
7055 steps :
7156 - run : " true"
You can’t perform that action at this time.
0 commit comments