As we reevaluate how to best support and maintain Staging Ref in the future, we encourage development teams using this environment to highlight their use cases in the following issue: https://gitlab.com/gitlab-com/gl-infra/software-delivery/framework/software-delivery-framework-issue-tracker/-/issues/36.

Skip to content
Snippets Groups Projects
Commit 5b8e04fb authored by Nick Thomas's avatar Nick Thomas
Browse files

Merge branch '198-update-phony-to-have-accurate-list-of-targets' into 'master'

Resolve "Update .PHONY to have accurate list of targets"

Closes #198

See merge request gitlab-org/gitlab-shell!316
parents 7b23c6f0 19336304
No related branches found
No related tags found
No related merge requests found
.PHONY: test test_ruby test_ruby_rubocop test_ruby_rspec test_go test_go_format test_go_test
.PHONY: validate verify verify_ruby verify_golang test test_ruby test_golang setup _install build compile check clean
validate: verify test
Loading
Loading
@@ -22,10 +22,14 @@ test_ruby:
test_golang:
support/go-test
setup: compile
build: compile
compile:
setup: _install bin/gitlab-shell
_install:
bin/install
build: bin/gitlab-shell
compile: bin/gitlab-shell
bin/gitlab-shell:
bin/compile
check:
Loading
Loading
Loading
Loading
@@ -33,7 +33,7 @@ config = GitlabConfig.new
abort("ERROR: missing option in config.yml") unless config.auth_file
print "\nAccess to #{config.auth_file}: "
print "Access to #{config.auth_file}: "
if system(File.dirname(__FILE__) + '/gitlab-keys', 'check-permissions')
print 'OK'
else
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment