aboutsummaryrefslogtreecommitdiff
path: root/ci/plugins.taskfile.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'ci/plugins.taskfile.yaml')
-rw-r--r--ci/plugins.taskfile.yaml39
1 files changed, 28 insertions, 11 deletions
diff --git a/ci/plugins.taskfile.yaml b/ci/plugins.taskfile.yaml
index f39121d..cab3d53 100644
--- a/ci/plugins.taskfile.yaml
+++ b/ci/plugins.taskfile.yaml
@@ -15,18 +15,18 @@ tasks:
all:
deps:
- - install-accounts
- - install-router
- - install-sessions
- - install-vncache
- - install-vncache-sessions
- - install-users
- - install-sqlite
- - install-argon2-lib
- - install-compression
- - install-compressor-lib
-
+ - install-rpmalloc
+ - install-compressor-lib
+ - install-argon2-lib
+ - install-compression
+ - install-sqlite
cmds:
+ - task: install-accounts
+ - task: install-router
+ - task: install-sessions
+ - task: install-vncache
+ - task: install-vncache-sessions
+ - task: install-users
- echo "Installing and configuring plugins and UI"
- task: build-bookmarks
@@ -156,3 +156,20 @@ tasks:
cmd: powershell -Command "rm ./lib/argon2/{{.ITEM}} -Recurse"
ignore_error: true
+ install-rpmalloc:
+ cmds:
+ #install the rpmalloc source code package for Linux and Mac
+ - task: install:install
+ vars:
+ PROJECT_NAME: 'vnlib_rpmalloc'
+ MODULE_NAME: "VNLib.Core"
+ FILE_NAME: "src.tgz"
+ DIR: './lib/vnlib_rpmalloc'
+
+ #install the rpmalloc binary for Windows
+ - task: install:install
+ vars:
+ PROJECT_NAME: 'vnlib_rpmalloc'
+ MODULE_NAME: "VNLib.Core"
+ FILE_NAME: "win-x64-release-vnlib_rpmalloc.tgz"
+ DIR: './lib/vnlib_rpmalloc'