aboutsummaryrefslogtreecommitdiff
path: root/ci/taskfile.yaml
blob: a27b1ace77135a9dc752fe8b98e1c527ee872f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# https://taskfile.dev

#Called by the vnbuild system to produce builds for my website
#https://www.vaughnnugent.com/resources/software

version: "3"

vars:
  BUILDS_URL: https://www.vaughnnugent.com/public/resources/software/builds

includes:
  install:
    taskfile: install.taskfile.yaml

  plugins:
    taskfile: plugins.taskfile.yaml

  container:
    dir: container  #always run from the container directory
    taskfile: container/Taskfile.yaml
    vars:
      BUILDS_URL: '{{.BUILDS_URL}}'
      PACKAGE_FILE_NAME: "sb-alpine3.19-oci.tgz"  #the name of the output package file

tasks:

  build:
    cmds:
    #clean out dist dir before building
    - cmd: powershell -Command "rm -Recurse -Force ./dist"
      ignore_error: true

    #copy setup script for linux
    - cmd: powershell -Command "mkdir lib -Force"
      ignore_error: true
    - cmd: wsl dos2unix ./setup.sh #convert the setup script to unix line endings for linux
      platform: [ win-x64 ]
    - powershell -Command "cp setup.sh lib/ -Force"
  
    - task: install-plugins
    - task: install-webserver
    
    #run container build last
    - task: container:build

  install-webserver:
    cmds:
    - for: [ win-x64, linux-x64, osx-x64 ]
      task: create-env
      vars: 
        TARGET_OS: '{{.ITEM}}'

  postbuild_success:
    cmds:
    #make bin dir
    - cmd: powershell -Command "mkdir bin -Force"
      ignore_error: true
    - for: [ win-x64, linux-x64, osx-x64 ]
      task: pack
      vars: 
        TARGET_OS: '{{.ITEM}}'

    #cleanup unnecessary build files that clog up the pipeline
    - for: [ build, plugins, dist, lib ]
      cmd: powershell -Command "rm -Recurse '{{.ITEM}}'"
      ignore_error: true

    - task: container:postbuild_success

  install-plugins:
    cmds:
    #add plugins
    - task: plugins:all
  
  build-container:
    cmds:
     - task: container:build
    
  create-env:
    vars:
      BUILD_DIR: './build/{{.TARGET_OS}}'
    cmds:
    #create dir for env
    - cmd: powershell -Command "mkdir {{.BUILD_DIR}} -Force"
      ignore_error: true
    
    #copy build files
    - for: [ plugins, dist, lib, config ]
      cmd: powershell -Command "cp -Recurse -Force {{.ITEM}} {{.BUILD_DIR}}"

    - task: get-webserver
      vars:
        TARGET_OS: '{{.TARGET_OS}}'
        BUILD_DIR: '{{.BUILD_DIR}}'

  get-webserver:
    internal: true
    cmds:
    - task: install:install
      vars:
        PROJECT_NAME: 'VNLib.Webserver'
        MODULE_NAME: "VNLib.Webserver"
        FILE_NAME: "{{.TARGET_OS}}-release.tgz"
        DIR: '{{.BUILD_DIR}}/webserver'

    - cmd: powershell -Command "cp -Force ./config/config.json {{.BUILD_DIR}}/config.json"
 
  pack:
    internal: true
    cmds:
    - cmd: powershell -Command "mkdir build/{{.TARGET_OS}}/ -Force"
      ignore_error: true
    - cd build/{{.TARGET_OS}} && tar -czf ../../bin/{{.TARGET_OS}}-release.tgz .
 

  clean:
    ignore_error: true
    cmds:
    - for: [ ./build, ./bin, ./dist, ./plugins, ./lib ]
      cmd: powershell -Command "rm -Recurse -Force '{{.ITEM}}'"
    
    - task: container:clean