• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

umputun / cronn
74%
master: 75%

Build:
Build:
LAST BUILD BRANCH: refs/tags/v1.9.0
DEFAULT BRANCH: master
Repo Added 22 Jul 2020 08:51AM UTC
Files 25
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH web-execution-history
branch: web-execution-history
CHANGE BRANCH
x
Reset
  • web-execution-history
  • auth-implementation
  • brute-force-protection
  • conditional-execution
  • dependabot/github_actions/github-actions-updates-a2e7793ad6
  • dependabot/go_modules/github.com/go-pkgz/lgr-0.12.0
  • dependabot/go_modules/go-modules-updates-07f3a6036d
  • dependabot/go_modules/go-modules-updates-24b9848b30
  • dependabot/go_modules/go-modules-updates-5acbcdf0e0
  • dependabot/go_modules/go-modules-updates-e08d9a54d9
  • dependabot/go_modules/go-modules-updates-e7f7ae579a
  • feat/alt-template-delimiters
  • feat/filter-and-template-refactoring
  • feat/neighbors-selector
  • feat/run-now-button
  • feature/manual-job-customization
  • feature/settings-modal
  • feature/web-base-url
  • feature/web-hostname
  • feature/web-manual-disable-options
  • fix-execution-id-type
  • fix/web-parser-reuse-sqlite-locking
  • gorelease
  • improve-conditions-validation
  • jitter-duration
  • master
  • paskal/clarify_email_notifications
  • paskal/dependabot-disable-updates
  • paskal/dependabot-security-updates
  • paskal/fix_successful_notifications
  • paskal/more_notifications
  • paskal/notify
  • paskal/update
  • refs/tags/v0.2.0
  • refs/tags/v0.3.0
  • refs/tags/v0.3.1
  • refs/tags/v0.4.0
  • refs/tags/v1.0.0
  • refs/tags/v1.1.0
  • refs/tags/v1.1.1
  • refs/tags/v1.2.0
  • refs/tags/v1.3.0
  • refs/tags/v1.4.0
  • refs/tags/v1.5.0
  • refs/tags/v1.5.1-beta.1
  • refs/tags/v1.5.10
  • refs/tags/v1.5.11
  • refs/tags/v1.5.2
  • refs/tags/v1.5.3
  • refs/tags/v1.5.4
  • refs/tags/v1.5.5
  • refs/tags/v1.5.6
  • refs/tags/v1.5.7
  • refs/tags/v1.5.8
  • refs/tags/v1.5.9
  • refs/tags/v1.6.0
  • refs/tags/v1.6.1
  • refs/tags/v1.7.0
  • refs/tags/v1.7.1
  • refs/tags/v1.8.0
  • refs/tags/v1.8.1
  • refs/tags/v1.9.0
  • sighup
  • site
  • web-ui
  • yaml-config-support

13 Nov 2025 07:08AM UTC coverage: 74.2% (+0.7%) from 73.473%
19323480760

Pull #51

github

umputun
fix: address QA and architecture review findings

**Critical fixes:**
- fix race condition in TestScheduler_resumeInterrupted test
  - add mutex synchronization around capturedNotification variable
  - verified with race detector (now passes)

**Code cleanup:**
- remove dead code from OutputCapture (SetError, Error methods, err field)
  - leftover from ErrorWriter refactoring
  - removed 40+ lines of unused code and tests

**Refactoring:**
- extract duplicate code in handleJobEvent to recordExecutionAndCleanup helper
  - removes duplication between EventTypeCompleted and EventTypeFailed cases
  - improves maintainability

**Performance:**
- optimize database index from two separate indexes to composite index
  - replace idx_executions_job_id and idx_executions_started_at
  - with idx_executions_job_started(job_id, started_at DESC)
  - optimizes queries with WHERE job_id AND ORDER BY started_at DESC

**Testing:**
- all tests pass (90.7% service, 88.1% web, 84.0% persistence)
- race detector clean
- linter: 0 issues
Pull Request #51: Add execution history with SQLite storage and web UI display

206 of 227 new or added lines in 5 files covered. (90.75%)

6 existing lines in 4 files now uncovered.

2482 of 3345 relevant lines covered (74.2%)

36.4 hits per line

Relevant lines Covered
Build:
Build:
3345 RELEVANT LINES 2482 COVERED LINES
36.4 HITS PER LINE
Source Files on web-execution-history
  • Tree
  • List 22
  • Changed 4
  • Source Changed 0
  • Coverage Changed 4
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
19323480760 web-execution-history fix: address QA and architecture review findings **Critical fixes:** - fix race condition in TestScheduler_resumeInterrupted test - add mutex synchronization around capturedNotification variable - verified with race detector (now passes) **C... Pull #51 13 Nov 2025 07:11AM UTC umputun github
74.2
19323121139 web-execution-history fix: include command output in resume failure notifications - resumeInterrupted now captures notifyOutput from executeCommand - combines error message with command output for notifications - matches pattern used in runJobWithCommand for consisten... Pull #51 13 Nov 2025 06:53AM UTC umputun github
74.24
19322673495 web-execution-history test: add comprehensive tests for handleExecutionLogs handler - test valid request with execution logs - test missing job id error path - test invalid execution id error path - test non-existent execution error path - test execution ownership val... Pull #51 13 Nov 2025 06:30AM UTC umputun github
74.36
19288499556 web-execution-history refactor: address code review feedback from gemini-code-assist - rename SerError to SetError following Go naming conventions - refactor multi-writer construction to eliminate variable shadowing - make error handling consistent using inline declar... Pull #51 12 Nov 2025 06:29AM UTC umputun github
73.29
19288365490 web-execution-history chore: set default exec-max-lines to 100, disable if web not enabled Pull #51 12 Nov 2025 06:22AM UTC umputun github
73.37
19288366423 web-execution-history chore: set default exec-max-lines to 100, disable if web not enabled Pull #51 12 Nov 2025 06:22AM UTC umputun github
73.25
19288279328 web-execution-history feat: add execution history with SQLite storage and web UI display - implement SQLite persistence for job execution records with configurable limits - add web UI to display execution history with logs, exit codes, and timestamps - separate notifi... Pull #51 12 Nov 2025 06:17AM UTC umputun github
73.27
19288208763 web-execution-history feat: add execution history with SQLite storage and web UI display - implement SQLite persistence for job execution records with configurable limits - add web UI to display execution history with logs, exit codes, and timestamps - separate notifi... push 12 Nov 2025 06:14AM UTC umputun github
73.27
19287877230 web-execution-history feat: add execution history with SQLite storage and web UI display - implement SQLite persistence for job execution records with configurable limits - add web UI to display execution history with logs, exit codes, and timestamps - separate notifi... push 12 Nov 2025 05:56AM UTC umputun github
74.42
See All Builds (285)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc