Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
c22f48d
Make my status module work properly
joshsymonds Oct 6, 2025
40e19f7
WIP: merge upstream
joshsymonds Oct 6, 2025
b981812
Update statusline snapshots
joshsymonds Oct 6, 2025
b2eba86
Some more improvements
joshsymonds Oct 6, 2025
181282c
More width improvements
joshsymonds Oct 7, 2025
d2942e2
Merge upstream/main
joshsymonds Oct 7, 2025
0400c79
Restore marquee statusline
joshsymonds Oct 7, 2025
9bd29ec
Fix flake and status bar
joshsymonds Oct 8, 2025
d7ba195
Merge remote-tracking branch 'upstream/main'
joshsymonds Oct 8, 2025
7dca594
Fix build errors
joshsymonds Oct 8, 2025
e42a97f
Fix more build errors
joshsymonds Oct 8, 2025
568b8db
Fix more more build errors
joshsymonds Oct 8, 2025
3d97baa
Fix up mcp calls
joshsymonds Oct 10, 2025
85d6898
Revert "Fix up mcp calls"
joshsymonds Oct 10, 2025
dc84e65
Merge remote-tracking branch 'upstream/main'
joshsymonds Oct 10, 2025
c556184
Fix flake and status bar
joshsymonds Oct 8, 2025
d368e34
Restore status module
joshsymonds Oct 10, 2025
04c4f3d
Move status pill
joshsymonds Oct 13, 2025
68561ee
Merge remote-tracking branch 'upstream/main'
joshsymonds Oct 13, 2025
f739624
More work on moving status pill
joshsymonds Oct 13, 2025
36fe955
More status pill work
joshsymonds Oct 13, 2025
1ad3521
Add MCP libraries better
joshsymonds Oct 14, 2025
81089cf
Redo spacing
joshsymonds Oct 14, 2025
a586230
Make escape stop the model
joshsymonds Oct 14, 2025
f682029
More spacing changes
joshsymonds Oct 14, 2025
7bb6678
More chatwidget sizing stuff
joshsymonds Oct 15, 2025
81b54d0
More chat widget fixes
joshsymonds Oct 16, 2025
fe46f1e
Refactor how skins work
joshsymonds Oct 16, 2025
9d3bedf
Fix mac builds
joshsymonds Oct 17, 2025
e94f7e6
Merge remote-tracking branch 'upstream/main'
joshsymonds Oct 27, 2025
ebd46fe
Merge remote-tracking branch 'origin/main'
joshsymonds Oct 27, 2025
c526b4f
Try to bundle this
joshsymonds Oct 29, 2025
dda8470
more action work
joshsymonds Oct 29, 2025
65e557e
Fix this to just be cachix
joshsymonds Oct 29, 2025
e656a1f
Make sure cachix works properly
joshsymonds Oct 29, 2025
f75d349
Get rid of rust-ci
joshsymonds Oct 29, 2025
3d5d4d8
Merge branch 'main' into main-rebased
joshsymonds Oct 29, 2025
ebaea7f
Fix snapshots and spacing
joshsymonds Oct 30, 2025
0ecf6a0
Status line spacing fixes
joshsymonds Oct 30, 2025
6a99f0a
render fixes
joshsymonds Oct 30, 2025
7051dd5
More margin and padding work
joshsymonds Oct 30, 2025
b122c0a
More prompt work
joshsymonds Oct 30, 2025
f62c72a
More behavior changes
joshsymonds Oct 30, 2025
e6c222e
More chat widget work
joshsymonds Oct 30, 2025
c8d9598
Merge upstream/main
joshsymonds Nov 6, 2025
f7b65d0
Merge remote-tracking branch 'upstream/main'
joshsymonds Nov 6, 2025
d47ca9f
Fix flake
joshsymonds Nov 6, 2025
4294124
Report version properly
joshsymonds Nov 6, 2025
7573812
Merge branch 'main' into upstream-rebased-main
joshsymonds Nov 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .github/workflows/codex-cli-bundles.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: codex-cli-builds

on:
push:
branches:
- main

concurrency:
group: codex-cli-builds-${{ github.ref_name }}
cancel-in-progress: true

jobs:
build:
name: Build – ${{ matrix.name }}
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- name: linux-x86_64
runner: ubuntu-24.04
system: x86_64-linux
- name: darwin-x86_64
runner: macos-13
system: x86_64-darwin
- name: darwin-aarch64
runner: macos-14
system: aarch64-darwin
steps:
- uses: actions/checkout@v5

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v13
with:
extra-conf: |
experimental-features = nix-command flakes

- name: Cache Nix directories
uses: actions/cache@v4
with:
path: |
~/.cache/nix
~/.local/share/nix
~/.local/state/nix
~/Library/Caches/nix
key: ${{ runner.os }}-nix-${{ matrix.system }}-${{ hashFiles('flake.lock') }}
restore-keys: |
${{ runner.os }}-nix-${{ matrix.system }}-
${{ runner.os }}-nix-

- name: Use magic Nix cache
uses: DeterminateSystems/magic-nix-cache-action@v7

- name: Use Cachix cache
uses: cachix/cachix-action@v15
with:
name: joshsymonds
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
push: true

- name: Build codex-cli derivation
run: |
cachix watch-exec joshsymonds -- \
nix build --print-build-logs --log-format raw --no-link --print-out-paths \
.#packages.${{ matrix.system }}.codex-cli
Loading