aboutsummaryrefslogtreecommitdiff
path: root/cmnext-cli/Taskfile.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'cmnext-cli/Taskfile.yaml')
-rw-r--r--cmnext-cli/Taskfile.yaml103
1 files changed, 103 insertions, 0 deletions
diff --git a/cmnext-cli/Taskfile.yaml b/cmnext-cli/Taskfile.yaml
new file mode 100644
index 0000000..c184bf8
--- /dev/null
+++ b/cmnext-cli/Taskfile.yaml
@@ -0,0 +1,103 @@
+# https://taskfile.dev
+
+version: '3'
+
+vars:
+ INT_DIR: '{{.SCRATCH_DIR}}/obj/{{.MODULE_NAME}}/'
+ TARGET: '{{.USER_WORKING_DIR}}/bin'
+ RELEASE_DIR: "./bin/release/{{.TARGET_FRAMEWORK}}"
+
+tasks:
+
+ #when build succeeds, archive the output into a tgz
+ postbuild_success:
+ dir: '{{.USER_WORKING_DIR}}'
+
+ cmds:
+
+ #run post in debug mode
+ - task: postbuild
+ vars:
+ BUILD_MODE: debug
+ TARGET_OS: linux-x64
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: debug
+ TARGET_OS: win-x64
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: debug
+ TARGET_OS: osx-x64
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: debug
+ TARGET_OS: linux-arm
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: debug
+ TARGET_OS: linux-arm64
+
+
+ #remove uncessary files from the release dir
+ - powershell -Command "Get-ChildItem -Recurse '{{.RELEASE_DIR}}/' -Include *.pdb,*.xml | Remove-Item"
+
+ #run post in release mode
+ - task: postbuild
+ vars:
+ BUILD_MODE: release
+ TARGET_OS: linux-x64
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: release
+ TARGET_OS: win-x64
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: release
+ TARGET_OS: osx-x64
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: release
+ TARGET_OS: linux-arm
+
+ - task: postbuild
+ vars:
+ BUILD_MODE: release
+ TARGET_OS: linux-arm64
+
+ #pack up source code and put in output
+ - powershell -Command "Get-ChildItem -Include *.cs,*.csproj -Recurse | Where { \$_.FullName -notlike '*\obj\*' } | Resolve-Path -Relative | tar --files-from - -czf '{{.TARGET}}/src.tgz'"
+
+
+ postbuild_failed:
+ dir: '{{.USER_WORKING_DIR}}'
+ cmds:
+ - echo "postbuild failed {{.PROJECT_NAME}}"
+
+
+ postbuild:
+ dir: '{{.USER_WORKING_DIR}}'
+ vars:
+ BUILD_DIR: "{{.USER_WORKING_DIR}}/bin/{{.BUILD_MODE}}/{{.TARGET_FRAMEWORK}}/{{.TARGET_OS}}/publish"
+ internal: true
+ cmds:
+ #copy license and readme to target
+ - cd .. && powershell -Command "Copy-Item -Path ./build.readme.txt -Destination '{{.BUILD_DIR}}/readme.txt'"
+
+ #tar outputs
+ - cd "{{.BUILD_DIR}}" && tar -czf "{{.TARGET}}/{{.TARGET_OS}}-{{.BUILD_MODE}}.tgz" .
+
+
+#Remove the output dirs on clean
+ clean:
+ dir: '{{.USER_WORKING_DIR}}'
+ ignore_error: true
+ cmds:
+ - cmd: powershell Remove-Item -Recurse './bin'
+ - cmd: powershell Remove-Item -Recurse './obj' \ No newline at end of file