-
Notifications
You must be signed in to change notification settings - Fork 2
feat(windows): add native maka.cu/2 executor #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sunheyi6
wants to merge
4
commits into
maka-agent:maka/base
Choose a base branch
from
sunheyi6:codex/windows-native-maka-cu2
base: maka/base
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+4,636
−6
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
d722afd
feat(windows): add native maka.cu/2 executor
sunheyi6 4797292
fix(windows): enforce native lifecycle and response bounds
sunheyi6 fa977c6
fix(computer-use): close native protocol review gaps
sunheyi6 9d9cd58
fix(windows): enforce background-only computer use
sunheyi6 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| [target.x86_64-pc-windows-msvc] | ||
| rustflags = ["-C", "target-feature=+crt-static"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| name: CI | ||
|
|
||
| on: | ||
| pull_request: | ||
| push: | ||
| branches: | ||
| - main | ||
| - "codex/**" | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| native-rust: | ||
| name: native Rust (${{ matrix.os }}) | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| os: | ||
| - windows-latest | ||
| - ubuntu-latest | ||
| runs-on: ${{ matrix.os }} | ||
| defaults: | ||
| run: | ||
| working-directory: apps/OpenComputerUseWindows/native | ||
| steps: | ||
| - name: Check out repository | ||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v6.0.1 | ||
|
|
||
| - name: Check Rust toolchain | ||
| run: | | ||
| rustc --version | ||
| cargo --version | ||
|
|
||
| - name: Check formatting | ||
| run: cargo fmt --check | ||
|
|
||
| - name: Run clippy | ||
| run: cargo clippy --locked --all-targets -- -D warnings | ||
|
|
||
| - name: Run tests | ||
| run: cargo test --locked --all-targets | ||
|
|
||
| - name: Build Windows release artifact | ||
| if: runner.os == 'Windows' | ||
| run: cargo build --locked --release --target x86_64-pc-windows-msvc | ||
|
|
||
| - name: Build analysis release artifact | ||
| if: runner.os != 'Windows' | ||
| run: cargo build --locked --release | ||
|
|
||
| - name: Record Windows artifact digest | ||
| if: runner.os == 'Windows' | ||
| shell: pwsh | ||
| run: | | ||
| $directory = "target/x86_64-pc-windows-msvc/release" | ||
| $artifact = "$directory/maka-cu-windows-rust.exe" | ||
| $hash = Get-FileHash -Algorithm SHA256 -LiteralPath $artifact | ||
| "commit=$env:GITHUB_SHA" | Out-File -Encoding utf8 "$directory/provenance.txt" | ||
| "artifact=$artifact" | Out-File -Encoding utf8 -Append "$directory/provenance.txt" | ||
| "sha256=$($hash.Hash.ToLowerInvariant())" | Out-File -Encoding utf8 -Append "$directory/provenance.txt" | ||
|
|
||
| - name: Upload Windows release artifact | ||
| if: runner.os == 'Windows' | ||
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.1.0 | ||
| with: | ||
| name: maka-cu-windows-rust-${{ github.sha }} | ||
| path: | | ||
| apps/OpenComputerUseWindows/native/target/x86_64-pc-windows-msvc/release/maka-cu-windows-rust.exe | ||
| apps/OpenComputerUseWindows/native/target/x86_64-pc-windows-msvc/release/provenance.txt | ||
| if-no-files-found: error | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.