Compare commits

...

9 Commits
v1.1.0 ... dev

Author SHA1 Message Date
e565283827 upd tag pattern 2025-02-18 11:25:00 +00:00
2d194e8e67 upd build_addon workflow 2025-02-18 11:24:02 +00:00
3aab5922ab rename build command to avoid overriding built-in 2025-02-14 23:33:34 +00:00
1fb435416f run scons with pdm 2025-02-14 14:32:53 +00:00
40aaeb4c54 add ignore 2025-02-14 11:57:43 +00:00
17cdd84c51 add Taskfile
invoke tasks from pdm
2025-02-14 11:44:52 +00:00
43379f1b09 fix path in release step 2025-01-24 01:41:40 +00:00
dc9ac5ddc3 add name to download action 2025-01-24 01:31:27 +00:00
9764b9d827 upd workflow 2025-01-24 01:05:57 +00:00
4 changed files with 47 additions and 45 deletions

View File

@ -1,10 +1,9 @@
name: build addon name: Build Addon
on: on:
push: push:
tags: ["*"] tags:
# To build on main/master branch, uncomment the following line: - 'v*.*.*'
# branches: [ main , master ]
pull_request: pull_request:
branches: [ main, master ] branches: [ main, master ]
@ -13,28 +12,27 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
os: [ubuntu-latest]
steps: steps:
- uses: actions/checkout@v4 - name: Checkout code
uses: actions/checkout@v4
- name: Set up PDM - name: Set up PDM
uses: pdm-project/setup-pdm@v4 uses: pdm-project/setup-pdm@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: '3.11'
- name: Install dependencies - name: Install dependencies
run: | run: |
pdm sync -d -G build pdm sync -d -G build
- name: building addon - name: Build addon
run: pdm run scons run: pdm run scons
- uses: actions/upload-artifact@v3 - name: Upload build artifacts
if: success()
uses: actions/upload-artifact@v4
with: with:
name: packaged_addon name: packaged_addon
path: ./*.nvda-addon path: ./*.nvda-addon
@ -42,17 +40,20 @@ jobs:
upload_release: upload_release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }} if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: ["build"] needs: build
steps: steps:
- uses: actions/checkout@v3 - name: Download releases files
- name: download releases files
uses: actions/download-artifact@v4.1.7 uses: actions/download-artifact@v4.1.7
with:
name: packaged_addon
- name: Display structure of downloaded files - name: Display structure of downloaded files
run: ls -R run: tree
- name: Release - name: Release
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with:
files: packaged_addon/*.nvda-addon files: ./*.nvda-addon
fail_on_unmatched_files: true fail_on_unmatched_files: true
prerelease: ${{ contains(github.ref, '-') }} prerelease: ${{ contains(github.ref, '-') }}

26
Taskfile.yml Normal file
View File

@ -0,0 +1,26 @@
version: '3'
vars:
SHELL: pwsh
tasks:
default:
desc: Build the addon
cmds:
- task: build
copy:
desc: Copy sources files to scratchpad directory
platforms: [windows]
vars:
SOURCE: addon\globalPlugins\voicemeeter
DEST: ${env:appdata}\nvda\scratchpad\globalPlugins\voicemeeter\
cmds:
- "{{.SHELL}} -Command 'robocopy {{.SOURCE}} {{.DEST}} /NDL'"
ignore_error: true
build:
desc: Build the addon
platforms: [windows]
cmds:
- '{{.SHELL}} -Command "pdm run scons"'

View File

@ -1,25 +0,0 @@
param (
[switch]$build
)
function Copy-FilesToScratchpad {
$source = Join-Path $PSScriptRoot "addon" "globalPlugins" "voicemeeter"
$target = Join-Path $env:appdata "nvda" "scratchpad" "globalPlugins" "voicemeeter"
Robocopy $source $target | Out-Null
}
function Build-Addon {
"Building add-on" | Write-Host
scons
}
function Main {
"Copying updated files to Scratchpad" | Write-Host
Copy-FilesToScratchpad
if ($build) {
Build-Addon
}
}
if ($MyInvocation.InvocationName -ne '.') { Main }

View File

@ -20,8 +20,8 @@ build = [
distribution = false distribution = false
[tool.pdm.scripts] [tool.pdm.scripts]
copy = "pwsh build.ps1" copy = "task copy"
build = "pwsh build.ps1 -build" release = "task build"
[tool.ruff] [tool.ruff]
exclude = [ exclude = [