name: golang:1.13.1
script:
- go build -o main main.go
artifacts:
paths:
- main
variables:
CGO_ENABLED: 0
tags:
- shell
При выполнении ошибка:
Running with gitlab-runner 14.3.2 (e0218c92)
on gitlab-runner-shell-04 1EF8gUxC
Preparing the "shell" executor
00:00
Using Shell executor...
Preparing environment
00:00
Running on srv-dev-rrsys-gitlab...
Getting source from Git repository
00:01
Fetching changes with git depth set to 50...
Reinitialized existing Git repository in /home/gitlab-runner/builds/1EF8gUxC/0/devops/gitops/.git/
Checking out b7be4682 as main...
Skipping Git submodules setup
Executing "step_script" stage of the job script
00:00
$ go build -o main main.go
bash: line 115: go: command not found
Cleaning up project directory and file based variables
00:00
ERROR: Job failed: exit status 1
В джобах использовать image ни разу не приходилось, поэтому не понимаю, почему не задействуется image? Нагуглить не получается запрос связанный с этой проблемой.
Без name попробуйте
Попробовал - тоже самое build: stage: build image: golang:1.13.1 script: - go build -o main main.go artifacts: paths: - main variables: CGO_ENABLED: 0 tags: - shell
Спасибо!
Обсуждают сегодня