Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Amirault <mamirault@gitlab.com>2022-06-13 06:27:52 +0300
committerMarcel Amirault <mamirault@gitlab.com>2022-06-13 06:27:52 +0300
commit2fb5bfe4cd779284f344f98bb2678abf0b442769 (patch)
tree6e177e116d8e9bf3ddd47ac0e44e13ad6c161357 /Makefile
parentd9dae8dc93d31a557d0404ce82384440b7f038f6 (diff)
Change double periods to ellipsismakefile-ellipsis
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile66
1 files changed, 33 insertions, 33 deletions
diff --git a/Makefile b/Makefile
index 5d18891a..9e7b2a4d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,45 +4,45 @@ INFO = \033[32m
INFO_END = \033[0m
../gitlab/.git:
- @echo "\n$(INFO)INFO: Cloning GitLab project into parent directory..$(INFO_END)\n"
+ @echo "\n$(INFO)INFO: Cloning GitLab project into parent directory...$(INFO_END)\n"
@git clone git@gitlab.com:gitlab-org/gitlab.git ../gitlab
../gitlab-runner/.git:
- @printf "\n$(INFO)INFO: Cloning GitLab Runner project into parent directory..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Cloning GitLab Runner project into parent directory...$(INFO_END)\n"
@git clone git@gitlab.com:gitlab-org/gitlab-runner.git ../gitlab-runner
../omnibus-gitlab/.git:
- @printf "\n$(INFO)INFO: Cloning Omnibus GitLab project into parent directory..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Cloning Omnibus GitLab project into parent directory...$(INFO_END)\n"
@git clone git@gitlab.com:gitlab-org/omnibus-gitlab.git ../omnibus-gitlab
../charts-gitlab/.git:
- @printf "\n$(INFO)INFO: Cloning GitLab Chart project into parent directory..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Cloning GitLab Chart project into parent directory...$(INFO_END)\n"
@git clone git@gitlab.com:gitlab-org/charts/gitlab.git ../charts-gitlab
../gitlab-operator/.git:
- @printf "\n$(INFO)INFO: Cloning GitLab Operator project into parent directory..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Cloning GitLab Operator project into parent directory...$(INFO_END)\n"
@git clone git@gitlab.com:gitlab-org/cloud-native/gitlab-operator.git ../gitlab-operator
clone-all-docs-projects: ../gitlab/.git ../gitlab-runner/.git ../omnibus-gitlab/.git ../charts-gitlab/.git ../gitlab-operator/.git
update-gitlab: ../gitlab/.git
- @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to GitLab project..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to GitLab project...$(INFO_END)\n"
@cd ../gitlab && git stash && git checkout master && git pull --ff-only
update-gitlab-runner: ../gitlab-runner/.git
- @printf "\n$(INFO)INFO: Stash any changes, switch to main branch, and pull updates to GitLab Runner project..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Stash any changes, switch to main branch, and pull updates to GitLab Runner project...$(INFO_END)\n"
@cd ../gitlab-runner && git stash && git checkout main && git pull --ff-only
update-omnibus-gitlab: ../omnibus-gitlab/.git
- @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to Omnibus GitLab project..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to Omnibus GitLab project...$(INFO_END)\n"
@cd ../omnibus-gitlab && git stash && git checkout master && git pull --ff-only
update-charts-gitlab: ../charts-gitlab/.git
- @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to GitLab Chart project..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to GitLab Chart project...$(INFO_END)\n"
@cd ../charts-gitlab && git stash && git checkout master && git pull --ff-only
update-gitlab-operator: ../gitlab-operator/.git
- @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to GitLab Operator project..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Stash any changes, switch to master branch, and pull updates to GitLab Operator project...$(INFO_END)\n"
@cd ../gitlab-operator && git stash && git checkout master && git pull --ff-only
update-all-docs-projects: update-gitlab update-gitlab-runner update-omnibus-gitlab update-charts-gitlab update-gitlab-operator
@@ -50,101 +50,101 @@ update-all-docs-projects: update-gitlab update-gitlab-runner update-omnibus-gitl
up: setup view
compile: setup
- @printf "\n$(INFO)INFO: Compiling GitLab documentation site..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Compiling GitLab documentation site...$(INFO_END)\n"
@bundle exec nanoc compile
view: compile
- @printf "\n$(INFO)INFO: Starting GitLab documentation site..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Starting GitLab documentation site...$(INFO_END)\n"
@bundle exec nanoc view
live: compile
- @printf "\n$(INFO)INFO: Starting GitLab documentation site with live reload..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Starting GitLab documentation site with live reload...$(INFO_END)\n"
@bundle exec nanoc live
setup-asdf:
- @printf "\n$(INFO)INFO: Installing asdf plugins..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Installing asdf plugins...$(INFO_END)\n"
@asdf plugin add ruby || true
@asdf plugin add nodejs || true
@asdf plugin add yarn || true
- @printf "\n$(INFO)INFO: Updating asdf plugins..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Updating asdf plugins...$(INFO_END)\n"
@asdf plugin update ruby
@asdf plugin update nodejs
@asdf plugin update yarn
install-asdf-dependencies:
- @printf "\n$(INFO)INFO: Installing asdf dependencies..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Installing asdf dependencies...$(INFO_END)\n"
@asdf install
install-ruby-dependencies:
- @printf "\n$(INFO)INFO: Installing Ruby dependencies..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Installing Ruby dependencies...$(INFO_END)\n"
@bundle install
install-nodejs-dependencies:
- @printf "\n$(INFO)INFO: Installing Node.js dependencies..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Installing Node.js dependencies...$(INFO_END)\n"
@yarn install --frozen-lockfile
setup: setup-asdf install-asdf-dependencies install-ruby-dependencies install-nodejs-dependencies
update:
- @printf "\n$(INFO)INFO: Stash any changes, switch to main branch, and pull updates to GitLab Docs project..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Stash any changes, switch to main branch, and pull updates to GitLab Docs project...$(INFO_END)\n"
@git stash && git checkout main && git pull --ff-only
update-all-projects: update update-all-docs-projects
clean:
- @printf "\n$(INFO)INFO: Removing tmp and public directories..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Removing tmp and public directories...$(INFO_END)\n"
@rm -rf tmp public
internal-links-check: clone-all-docs-projects compile
- @printf "\n$(INFO)INFO: Checking all internal links..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Checking all internal links...$(INFO_END)\n"
@bundle exec nanoc check internal_links
internal-anchors-check: clone-all-docs-projects compile
- @printf "\n$(INFO)INFO: Checking all internal anchors..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Checking all internal anchors...$(INFO_END)\n"
@bundle exec nanoc check internal_anchors
internal-links-and-anchors-check: clone-all-docs-projects compile
- @printf "\n$(INFO)INFO: Checking all internal links and anchors..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Checking all internal links and anchors...$(INFO_END)\n"
@parallel time bundle exec nanoc check ::: internal_links internal_anchors
external-links-check: compile
- @printf "\n$(INFO)INFO: Checking all external links..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Checking all external links...$(INFO_END)\n"
@bundle exec nanoc check external_links
brew-bundle:
- @printf "\n$(INFO)INFO: Checking Brew dependencies, if Brew is available..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Checking Brew dependencies, if Brew is available...$(INFO_END)\n"
@(command -v brew > /dev/null 2>&1) && brew bundle --no-lock || true
rspec-tests:
- @printf "\n$(INFO)INFO: Running RSpec tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running RSpec tests...$(INFO_END)\n"
@bundle exec rspec
jest-tests:
- @printf "\n$(INFO)INFO: Running Jest tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running Jest tests...$(INFO_END)\n"
@yarn test
eslint-tests:
- @printf "\n$(INFO)INFO: Running ESLint tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running ESLint tests...$(INFO_END)\n"
@yarn eslint
prettier-tests:
- @printf "\n$(INFO)INFO: Running Prettier tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running Prettier tests...$(INFO_END)\n"
@yarn prettier
stylelint-tests:
- @printf "\n$(INFO)INFO: Running Stylelint tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running Stylelint tests...$(INFO_END)\n"
@scripts/run-stylelint.sh
hadolint-tests:
- @printf "\n$(INFO)INFO: Running hadolint tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running hadolint tests...$(INFO_END)\n"
@hadolint latest.Dockerfile .gitpod.Dockerfile **/*.Dockerfile
yamllint-tests:
- @printf "\n$(INFO)INFO: Running yamllint tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running yamllint tests...$(INFO_END)\n"
@yamllint .gitlab-ci.yml content/_data
markdownlint-tests:
- @printf "\n$(INFO)INFO: Running markdownlint tests..$(INFO_END)\n"
+ @printf "\n$(INFO)INFO: Running markdownlint tests...$(INFO_END)\n"
@yarn markdownlint doc/**/*.md
test: setup brew-bundle rspec-tests jest-tests eslint-tests prettier-tests stylelint-tests hadolint-tests yamllint-tests markdownlint-tests