Skip to content

Commit 043cb10

Browse files
committed
Revert "Switch CI from Vira self-hosted to GitHub Actions (#40)"
Remove the GitHub Actions CI workflow, the `just ci` target, and restore explicit build.systems in vira.hs so Vira self-hosted handles multi-platform builds again. This also effectively reverts #41 (CI trigger on flake update bot branch) since the workflow file is removed entirely.
1 parent 9ad3d60 commit 043cb10

3 files changed

Lines changed: 5 additions & 37 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

justfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
default:
33
@just --list
44

5-
# Run CI locally
6-
ci:
7-
vira ci -b
8-
95
# Record the demo screencast (requires JUSPAY_API_KEY)
106
demo:
117
nix run ./demo --override-input oc . -- coding-agents/opencode/demo.tape

vira.hs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
isMain = ctx.branch == "main"
66
in
77
pipeline
8-
{ build.flakes =
8+
{ build.systems =
9+
[ "x86_64-linux"
10+
, "aarch64-darwin"
11+
]
12+
, build.flakes =
913
[ "."
1014
, "./demo" { overrideInputs = [("oc", ".")] }
1115
, "./coding-agents/opencode/test/home-manager" { overrideInputs = [("oc", ".")] }

0 commit comments

Comments
 (0)