CI: Separate build and test steps
All checks were successful
CI Code / Check coding style (pull_request) Successful in 32s
CI Code / Check spelling (pull_request) Successful in 24s
CI Code / Code Coverage (pull_request) Successful in 4m46s
CI Code / Linux (debian) (pull_request) Successful in 6m5s
CI Code / Linux (ubuntu) (pull_request) Successful in 6m11s
CI Code / Linux (arch) (pull_request) Successful in 6m25s

This commit is contained in:
2026-03-04 22:53:02 +03:00
parent 31538580fb
commit d4254db814
2 changed files with 7 additions and 8 deletions

View File

@@ -29,10 +29,10 @@ jobs:
name: Linux name: Linux
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Build
run: docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
- name: Run tests - name: Run tests
run: | run: docker run profanity ./ci-build.sh
docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
docker run profanity ./ci-build.sh
code-style: code-style:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -107,7 +107,7 @@ jobs:
name: Code Coverage name: Code Coverage
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Build and run coverage - name: Build
run: | run: docker build -f Dockerfile.arch -t profanity-cov .
docker build -f Dockerfile.arch -t profanity-cov . - name: Run coverage
docker run profanity-cov ./ci-build.sh --coverage-only run: docker run profanity-cov ./ci-build.sh --coverage-only

View File

@@ -86,7 +86,6 @@ extract_test_count() {
# and checks that the test framework reports the failure correctly # and checks that the test framework reports the failure correctly
verify_test_failure_detection() verify_test_failure_detection()
{ {
echo
echo "==> Verifying test failure detection..." echo "==> Verifying test failure detection..."
# Create a simple failing test # Create a simple failing test