ci: parallelize test workflow #485

Closed
opened 2026-04-05 17:12:29 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @water-sucks on 12/15/2025

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Description

To enable a faster feedback loop when pushing up to a pull request, move the Docker image building for both PostgreSQL and SQLite into separate CI jobs.

Additionally, the workflow itself seemed broken. make build-sqlite uses buildx and requires a tag param now, which is causing testing CI workflows to fail when they are not able to build the Docker image.

Older CI workflows used to run docker build without the buildx driver, and the rule that does this got renamed to dev-build-${db}, so I switched the rule name to get this working again.

How to test?

The test.yml workflow should pass and be substantially faster.

*Originally created by @water-sucks on 12/15/2025* ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Description To enable a faster feedback loop when pushing up to a pull request, move the Docker image building for both PostgreSQL and SQLite into separate CI jobs. Additionally, the workflow itself seemed broken. `make build-sqlite` uses `buildx` and requires a `tag` param now, which is causing testing CI workflows to fail when they are not able to build the Docker image. Older CI workflows used to run `docker build` without the `buildx` driver, and the rule that does this got renamed to `dev-build-${db}`, so I switched the rule name to get this working again. ## How to test? The `test.yml` workflow should pass and be substantially faster.
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#485