1
0
Fork 0
mirror of https://code.forgejo.org/actions/go-versions synced 2025-06-19 16:40:27 +02:00
This commit is contained in:
Nikita Bykov 2020-08-25 15:50:26 +03:00
parent 5a7abdc250
commit 534826cfa6
4 changed files with 11 additions and 11 deletions

View file

@ -1,28 +1,28 @@
class GoBuilder {
<#
.SYNOPSIS
Base Node.js builder class.
Base Go builder class.
.DESCRIPTION
Base Node.js builder class that contains general builder methods.
Base Go builder class that contains general builder methods.
.PARAMETER Version
The version of Node.js that should be built.
The version of Go that should be built.
.PARAMETER Platform
The platform of Node.js that should be built.
The platform of Go that should be built.
.PARAMETER Architecture
The architecture with which Node.js should be built.
The architecture with which Go should be built.
.PARAMETER TempFolderLocation
The location of temporary files that will be used during Node.js package generation.
The location of temporary files that will be used during Go package generation.
.PARAMETER WorkFolderLocation
The location of installation files.
.PARAMETER ArtifactFolderLocation
The location of generated Node.js artifact.
The location of generated Go artifact.
.PARAMETER InstallationTemplatesLocation
The location of installation script template. Using "installers" folder from current repository.