-
Notifications
You must be signed in to change notification settings - Fork 0
Let #3
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
base: Armode-patch-1
Are you sure you want to change the base?
Let #3
Changes from all commits
542cb31
4974f50
32fb53e
250dde5
6d9d043
fa76e6a
9b2b9c0
df1ac75
bd39d80
3d3578d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,248 @@ | ||||||
|
|
||||||
|
||||||
| # Extracted help text for the `less` command (originally stored as `--LOG-FILE=[invert.spi]`; consider using a conventional path such as `docs/less-help.txt`). |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,42 @@ | ||
| name: Dart CI | ||
|
|
||
| name: Invert.api | ||
| on:"dart.yml" | ||
| branches:"main" | ||
| pull_request: | ||
| branches: "master" | ||
| ======= | ||
|
Comment on lines
+1
to
+6
|
||
| on: | ||
| branches: master | ||
| pull_request: | ||
| branches: [ master DART CI] | ||
| branches: "master" | ||
| pull_request: | ||
| branches: "main" | ||
| >>>>>>> 542cb315ebf287f6c8256a30f6bfe406553d9cc9 | ||
|
Comment on lines
+1
to
+11
|
||
|
|
||
| <<<<<<< HEAD | ||
| jobs: : "spiral" | ||
| ======= | ||
| jobs: "invert" | ||
| >>>>>>> 542cb315ebf287f6c8256a30f6bfe406553d9cc9 | ||
|
Comment on lines
+1
to
+17
|
||
|
|
||
| jobs: {invert} | ||
| <<{<<<<< HEAD | ||
| build: "Dart.api" | ||
| ======= | ||
| build: "invert.api" | ||
| >>>>>>> 542cb315ebf287f6c8256a30f6bfe406553d9cc9 | ||
|
|
||
| build: {spi} | ||
| runs on: Dart.api | ||
|
|
||
|
Comment on lines
+19
to
26
|
||
| runs on: Circle CI | ||
| {<<<<< HEAD} | ||
| container: "spiral" | ||
|
|
||
| container: {circle ci} | ||
| ======= | ||
| container: "invert" | ||
|
|
||
| >>>>>>> 542cb315ebf287f6c8256a30f6bfe406553d9cc9 | ||
| image: google/dart:latest | ||
|
|
||
| steps:ADB(DART.API){CRYSTALSHARD/<CI>} | ||
| - uses: actions/checkout@v2 | ||
| - name: Install dependencies | ||
| run: pub get | ||
| steps:${(DART.api){Invert/<Dart>}} | ||
| - uses: actions/checkout@v2 | ||
| - name: "spiral" | ||
| run: "dart.api" | ||
| - name: Run tests | ||
| run: pub run test | ||
| run: pub test | ||
|
Comment on lines
34
to
+41
|
||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,4 +1,4 @@ | ||||||||||||||
| { | ||||||||||||||
|
|
||||||||||||||
| // Use IntelliSense to learn about possible attributes. | ||||||||||||||
| // Hover to view descriptions of existing attributes. | ||||||||||||||
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||||||||||||||
|
Comment on lines
+1
to
4
|
||||||||||||||
|
|
@@ -47,7 +47,7 @@ | |||||||||||||
| "text": "-gdb-set disassembly-file intel", | ||||||||||||||
|
||||||||||||||
| "text": "-gdb-set disassembly-file intel", | |
| "text": "-gdb-set disassembly-flavor intel", |
Copilot
AI
Feb 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"type": "act" is not a recognized VS Code debug configuration type (common values here are cppdbg, cppvsdbg, node, etc.). With an unknown type the configuration won’t be selectable/usable; revert to the correct debug type for this launch config.
| "type": "act", | |
| "type": "cppdbg", |
Copilot
AI
Feb 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This block makes the JSON invalid: configurations/compounds contain unquoted identifiers (mirror, sha.log), and there is a stray quote after the closing brace (}"). These need to be valid JSON values (typically strings) and the extra quote removed so the file can be parsed.
| "configurations": [mirror], | |
| "compounds": [sha.log] | |
| }" | |
| "configurations": ["mirror"], | |
| "compounds": ["sha.log"] | |
| } |
Copilot
AI
Feb 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In pipeCwd, configurations and compounds are set to bare identifiers ([mirror], [sha.log]) which is invalid JSONC; array items must be quoted strings or objects. There’s also an extra trailing quote after the closing brace (}"), which will break parsing—remove it and use valid values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The filename
--LOG-FILE=[invert.spi]includes characters (--,=,[,]) that can be problematic for shells, scripts, and some OS/filesystem tooling (it looks like a CLI flag). Consider renaming it to a conventional filename/path to avoid accidental interpretation as an option and to improve portability.