From 9dbf01a08c4ada985e6d6780b9f2c9d8a4ac5bee Mon Sep 17 00:00:00 2001 From: srpatcha Date: Sun, 30 Aug 2026 22:07:39 -0700 Subject: [PATCH] ci: run the build-and-test workflow on master MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ci.yml watched `main` and `develop`. Neither exists: $ gh api repos/embeddedos-org/eAI -q .default_branch master $ gh api repos/embeddedos-org/eAI/branches/main 404 Branch not found So every push to master and every pull request against it — they all target master — fell outside the trigger. The last run was 2026-05-31, and the pattern shows what happened: 2026-05-31 branch=v1.9.0 failure 2026-05-28 branch=v1.5.0 failure 2026-05-27 branch=main failure 2026-05-27 branch=main success main existed until late May, the workflow ran on it, the branch was renamed to master, and the workflow was left pointing at a branch that had gone. The runs after that are tag pushes, which still match tags: ["v*"], and all three failed. ci.yml is the only workflow here that compiles the C, runs pytest and cross-builds for ARM: jobs: test-c: test-python: build-arm: release: Five other workflows do watch master and have kept running — codeql, book-build, video-build, deploy-pages, scorecard — so the repository has not been silent. But none of them is a test gate. codeql builds, as input to static analysis, not to check the build. master is added rather than substituted, so a later rename in either direction does not break this again. Expect the first run to be red. The last three were, and three months of changes have landed unverified since; finding that out is the point. Refs #38 Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21d8b0a..3981420 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,10 +2,10 @@ name: CI — eAI on: push: - branches: [main, develop] + branches: [master, main, develop] tags: ["v*"] pull_request: - branches: [main] + branches: [master, main] jobs: # ── C/C++ Tests ───────────────────────────────────────────────────────────