test-packaging.yaml: Add step "Build in repository"
Run "make all" in the repository source before packaging and tests. That's the state in-repo tests should find before running, and indeed, as of now some in-repo tests don't run correctly due to missing __init__py files generated during build. Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
1f607d922f
commit
ae67387451
1 changed files with 7 additions and 1 deletions
8
.github/workflows/test-packaging.yaml
vendored
8
.github/workflows/test-packaging.yaml
vendored
|
|
@ -54,6 +54,12 @@ jobs:
|
|||
set -euxo pipefail
|
||||
make -C "${{ github.event.repository.name }}" check
|
||||
|
||||
- name: Build in repository source
|
||||
shell: bash
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
make -C "${{ github.event.repository.name }}" all
|
||||
|
||||
- name: Build package
|
||||
shell: bash
|
||||
run: |
|
||||
|
|
@ -66,7 +72,7 @@ jobs:
|
|||
set -euxo pipefail
|
||||
make -C "${{ github.event.repository.name }}" check
|
||||
|
||||
- name: Run post-build integration tests against repo
|
||||
- name: Run unit + integration tests against repository
|
||||
shell: bash
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
|
|
|
|||
Loading…
Reference in a new issue