mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
parent
214e25fb09
commit
bfbea5fc7b
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@ -14,7 +14,7 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
platform: [Win32, x64, ARM64]
|
||||
platform: [Win32, x64, x64_AVX2, ARM64]
|
||||
configuration: [Release]
|
||||
|
||||
steps:
|
||||
@ -85,7 +85,18 @@ jobs:
|
||||
Write-Host "Version: $Major.$Minor.$Revis.$Build ($CommitID)"
|
||||
|
||||
- name: Build
|
||||
run: msbuild Notepad3.sln /m /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }} /v:minimal
|
||||
shell: pwsh
|
||||
run: |
|
||||
$platform = "${{ matrix.platform }}"
|
||||
$avxFlag = ""
|
||||
|
||||
# Handle x64_AVX2 special case
|
||||
if ($platform -eq "x64_AVX2") {
|
||||
$platform = "x64"
|
||||
$avxFlag = "/p:EnableEnhancedInstructionSet=AdvancedVectorExtensions2"
|
||||
}
|
||||
|
||||
msbuild Notepad3.sln /m /p:Configuration=${{ matrix.configuration }} /p:Platform=$platform $avxFlag /v:minimal
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
@ -85,7 +85,7 @@
|
||||
- Issues: [#1665](https://github.com/rizonesoft/Notepad3/issues/1665), [#370](https://github.com/rizonesoft/Notepad3/issues/370), [#512](https://github.com/rizonesoft/Notepad3/issues/512), [#4331](https://github.com/rizonesoft/Notepad3/issues/4331), [#3652](https://github.com/rizonesoft/Notepad3/issues/3652), [#5399](https://github.com/rizonesoft/Notepad3/issues/5399)
|
||||
- See [research/autosave-backup.md](research/autosave-backup.md)
|
||||
- [ ] Installer testing on various Windows versions
|
||||
- [ ] **AVX2 Build** - Optimized build for modern CPUs
|
||||
- [x] **AVX2 Build** - ✅ Added x64_AVX2 to CI matrix
|
||||
- Issue: [#4240](https://github.com/rizonesoft/Notepad3/issues/4240)
|
||||
- [ ] Language file updates
|
||||
- [ ] **Move Beta Page to rizonesoft.com** - Host beta downloads on main site
|
||||
|
||||
Loading…
Reference in New Issue
Block a user