Skip to content

Commit 5498a49

Browse files
committed
Rename build output to papyrus-compiler
Update CI workflow and documentation to use 'papyrus-compiler' as the compiled binary name. Changed the manual-release workflow to output bin/papyrus-compiler, and updated AGENTS.md, README.md and README.RU.md to reflect the new bin/papyrus-compiler(.exe) build commands.
1 parent 1b25912 commit 5498a49

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/manual-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
version: weekly.2025.48
5252

5353
- name: Build Project
54-
run: v -prod -g -gc none -o "bin/papyrus" compiler.v
54+
run: v -prod -g -gc none -o "bin/papyrus-compiler" compiler.v
5555

5656
- name: Get the date
5757
id: date

AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,13 +101,13 @@ The compiler processes files through these stages in order:
101101
### Build
102102
```bash
103103
# Debug build
104-
v -o "bin\papyrus.exe" compiler.v
104+
v -o "bin\papyrus-compiler.exe" compiler.v
105105

106106
# Production build (optimized, no GC)
107-
v -o "bin\papyrus.exe" -prod -g -gc none compiler.v
107+
v -o "bin\papyrus-compiler.exe" -prod -g -gc none compiler.v
108108

109109
# Debug with symbols
110-
v -g -gc none -o "bin\papyrus.exe" compiler.v
110+
v -g -gc none -o "bin\papyrus-compiler.exe" compiler.v
111111
```
112112

113113
### Run Tests

README.RU.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Function EquipItem(Form akItem, bool abPreventRemoval = false, bool abSilent = f
133133
- [V compiler d0dc13e (weekly.2025.48)](https://github.com/vlang/v/releases/tag/weekly.2025.48)
134134

135135
```bash
136-
v -o "bin\papyrus.exe" -prod -g -gc none compiler.v
136+
v -o "bin\papyrus-compiler.exe" -prod -g -gc none compiler.v
137137
```
138138

139139
## Тестирование

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Scripts from the directory specified by the `-h "..."` argument will NOT be comp
132132
- [V compiler d0dc13e (weekly.2025.48)](https://github.com/vlang/v/releases/tag/weekly.2025.48)
133133

134134
```bash
135-
v -o "bin\papyrus.exe" -prod -g -gc none compiler.v
135+
v -o "bin\papyrus-compiler.exe" -prod -g -gc none compiler.v
136136
```
137137

138138
## Testing

0 commit comments

Comments
 (0)