Go@0 - Go v0 タスク
このタスクを使用して、Go アプリケーションの取得、ビルド、テスト、またはカスタム Go コマンドの実行を行います。
構文
# Go v0
# Get, build, or test a Go application, or run a custom Go command.
- task: Go@0
inputs:
command: 'get' # 'get' | 'build' | 'test' | 'custom'. Required. Command. Default: get.
#customCommand: # string. Required when command == custom. Custom command.
#arguments: # string. Arguments.
# Advanced
#workingDirectory: # string. Working directory.
入力
command
-
コマンド
string
. 必須。 使用できる値: get
、build
、test
、custom
。 既定値: get
.
実行する Go コマンドを指定します。
Custom
を使用して、ここに記載されていないコマンドを実行します。
カスタム コマンド の
string
.
command == custom
する場合に必要です。
実行するカスタム Go コマンド。 たとえば、go version
を実行するには、version
を使用します。
arguments
-
引数
string
.
選択したコマンドの省略可能な引数。 たとえば、go build
コマンドにはビルド時引数を使用します。
workingDirectory
-
作業ディレクトリの
string
.
コマンドを実行する作業ディレクトリ。 空の場合、リポジトリのルート (ビルドの場合) または成果物 (リリース用) が使用されます。これは、$(System.DefaultWorkingDirectory)
の値です。
タスク コントロールのオプション
すべてのタスクには、タスク入力に加えて制御オプションがあります。 詳細については、「コントロール オプションと一般的なタスク プロパティを参照してください。
出力変数
なし。
注釈
このタスクを使用して、Go アプリケーションの取得、ビルド、テスト、またはカスタム Go コマンドの実行を行います。
例示
variables:
GOBIN: '$(GOPATH)/bin' # Go binaries path
GOROOT: '/usr/local/go1.11' # Go installation path
GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path
modulePath: '$(GOPATH)/src/github.com/$(build.repository.name)' # Path to the module's code
steps:
- task: GoTool@0
displayName: 'Use Go 1.10'
- task: Go@0
displayName: 'go get'
inputs:
arguments: '-d'
- task: Go@0
displayName: 'go build'
inputs:
command: build
arguments: '-o "$(System.TeamProject).exe"'
- task: ArchiveFiles@2
displayName: 'Archive files'
inputs:
rootFolderOrFile: '$(Build.Repository.LocalPath)'
includeRootFolder: False
- task: PublishBuildArtifacts@1
displayName: 'Publish artifact'
condition: succeededOrFailed()