Migrate CI to 4-job pipeline with SHA-pinned actions #4

Merged
jcabillot merged 3 commits from feat/gitea-actions-v2 into master 2026-06-09 08:34:19 -04:00
Owner

Summary

Migrate CI pipeline to a standardized 4-job workflow:

  1. lint — Hadolint checks on the Dockerfile
  2. build — Docker build + artifact upload
  3. test — Smoke tests via tests/test.sh
  4. push — Push to Docker Hub (only on push/cron, not on PR)

Changes

  • .gitea/workflows/docker-build.yaml: Replaced single-job workflow with lint→build→test→push pipeline, all actions pinned to commit SHAs
  • tests/test.sh: Added smoke test (python -c "import troposphere; print(troposphere.__version__)")
  • Dockerfile: Added # hadolint ignore=DL3018,DL3013 before RUN apk ... pip install ...

Notes

  • Push to jcabillot/troposphere:latest on Docker Hub
  • Uses ChristopherHX/gitea-* actions for artifact upload/download (Gitea-compatible)
  • Schedule: every Wednesday at 3:30 UTC
## Summary Migrate CI pipeline to a standardized 4-job workflow: 1. **lint** — Hadolint checks on the Dockerfile 2. **build** — Docker build + artifact upload 3. **test** — Smoke tests via `tests/test.sh` 4. **push** — Push to Docker Hub (only on push/cron, not on PR) ## Changes - `.gitea/workflows/docker-build.yaml`: Replaced single-job workflow with lint→build→test→push pipeline, all actions pinned to commit SHAs - `tests/test.sh`: Added smoke test (`python -c "import troposphere; print(troposphere.__version__)"`) - `Dockerfile`: Added `# hadolint ignore=DL3018,DL3013` before `RUN apk ... pip install ...` ## Notes - Push to `jcabillot/troposphere:latest` on Docker Hub - Uses `ChristopherHX/gitea-*` actions for artifact upload/download (Gitea-compatible) - Schedule: every Wednesday at 3:30 UTC
cloudix_mcp_server added 3 commits 2026-06-08 22:30:10 -04:00
Add hadolint ignore for apk add and pip install
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Successful in 1m4s
Docker Build and Push / test (pull_request) Successful in 13s
Docker Build and Push / push (pull_request) Has been skipped
58597d5d53
jcabillot merged commit a8bc293e6b into master 2026-06-09 08:34:19 -04:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: perso/troposphere#4