Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,17 @@ jobs:
- name: Install Nix
if: steps.filter.outputs.skip_build != 'true'
uses: DeterminateSystems/nix-installer-action@main
uses: cachix/install-nix-action@v27
with:
extra_nix_config: |
experimental-features = nix-command flakes
- name: Setup Nix cache
- name: Setup Cachix
if: steps.filter.outputs.skip_build != 'true'
uses: DeterminateSystems/magic-nix-cache-action@main
# For faster CI, consider adding a dedicated binary cache:
# cachix-name: logos-workspace
# cachix-auth-token: ${{ secrets.CACHIX_AUTH_TOKEN }}
uses: cachix/cachix-action@v15
with:
name: logos-co
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

- name: Add workspace tools to PATH
if: steps.filter.outputs.skip_build != 'true'
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,6 @@
[submodule "repos/logos-test-modules"]
path = repos/logos-test-modules
url = git@github.com:logos-co/logos-test-modules.git
[submodule "repos/logos-nix"]
path = repos/logos-nix
url = git@github.com:logos-co/logos-nix.git
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ Because the workspace flake declares `logos-liblogos.inputs.logos-cpp-sdk.follow
| `ws worktree add <name> [-b br]` | Create a worktree with submodules and `ws/<branch>` branches |
| `ws worktree list` | List all worktrees |
| `ws worktree remove <name>` | Remove a worktree |
| `ws repo-upgrade [repo...\|--group G]` | Pull latest master/main for submodules |
Copy link

Copilot AI Mar 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README usage omits options supported by the implementation/help (--all and -g, plus the default behavior when no args are provided). Update the README command signature to match scripts/ws help text so users don’t miss supported flags.

Suggested change
| `ws repo-upgrade [repo...\|--group G]` | Pull latest master/main for submodules |
| `ws repo-upgrade [repo...\|--group G\|--all]` | Pull latest master/main for submodules (default: all repos) |

Copilot uses AI. Check for mistakes.
| `ws sync-graph` | Regenerate `nix/dep-graph.nix` from repo flake.nix files |
| `ws nix-diagnose <repo>` | Detect circular deps and version conflicts in flake.lock |
| `ws check-qt <repo>` | Detect Qt version conflicts in nix closure or module cache |
Expand Down
Loading
Loading