diff --git a/docs/configuration/advanced-configuration.md b/docs/configuration/advanced-configuration.md index 51c88e6ba7700f883cbff9b52f226f9b4b3aee95..aee562619bd9f669271c3e01a2fe861737bf9547 100644 --- a/docs/configuration/advanced-configuration.md +++ b/docs/configuration/advanced-configuration.md @@ -12,7 +12,7 @@ The file to be edited can be found in: ## The global section -This defines global settings of multi-runner. +This defines global settings of GitLab Runner. | Setting | Description | | ------- | ----------- | @@ -500,4 +500,4 @@ It depends on what you'd like to do. [secpull]: ../security/index.md#usage-of-private-docker-images-with-if-not-present-pull-policy [priv-example]: https://docs.gitlab.com/ce/ci/docker/using_docker_images.html#define-an-image-from-a-private-docker-registry [secret variable]: https://docs.gitlab.com/ce/ci/variables/#secret-variables -[cronvendor]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/vendor/github.com/gorhill/cronexpr/README.md +[cronvendor]: https://gitlab.com/gitlab-org/gitlab-runner/blob/master/vendor/github.com/gorhill/cronexpr/README.md diff --git a/docs/development/README.md b/docs/development/README.md index 8523530c439f7c9233b63f15cd070c961b3e72cd..8175889703a4c4848996adddf0794c5a471a1b7d 100644 --- a/docs/development/README.md +++ b/docs/development/README.md @@ -82,8 +82,8 @@ mkdir -p $GOPATH ## 4. Download runner sources ``` -go get gitlab.com/gitlab-org/gitlab-ci-multi-runner -cd $GOPATH/src/gitlab.com/gitlab-org/gitlab-ci-multi-runner/ +go get gitlab.com/gitlab-org/gitlab-runner +cd $GOPATH/src/gitlab.com/gitlab-org/gitlab-runner/ ``` ## 5. Install runner dependencies @@ -101,17 +101,17 @@ Normally you would use `gitlab-runner`, in order to compile and run Go source us ``` make install -gitlab-ci-multi-runner run +gitlab-runner run ``` You can run runner in debug-mode: ``` make install -gitlab-ci-multi-runner --debug run +gitlab-runner --debug run ``` -## 7. Compile and install runner binary as `gitlab-ci-multi-runner` +## 7. Compile and install runner binary as `gitlab-runner` ``` make install @@ -209,6 +209,6 @@ Which is especially tricky on Windows. Try to execute: `make deps docker`, if it doesn't help you can do that in steps: 1. Execute `go get -u github.com/jteeuwen/go-bindata/...` -2. Download https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-x86_64.tar.xz and save to out/docker/prebuilt-x86_64.tar.xz -3. Download https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-arm.tar.xz and save to out/docker/prebuilt-arm.tar.xz +2. Download https://gitlab-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-x86_64.tar.xz and save to out/docker/prebuilt-x86_64.tar.xz +3. Download https://gitlab-runner-downloads.s3.amazonaws.com/master/docker/prebuilt-arm.tar.xz and save to out/docker/prebuilt-arm.tar.xz 4. Execute `make docker` or check the Makefile how this command looks like diff --git a/docs/executors/docker.md b/docs/executors/docker.md index c0c614589cceda539a20337c267e2e55a73c3f69..1b99af8b0eaf5136ef42531053be0feacb025c82 100644 --- a/docs/executors/docker.md +++ b/docs/executors/docker.md @@ -217,7 +217,7 @@ This is an example `config.toml` to mount the data directory for the official My Since version 1.5 GitLab Runner mounts a `/builds` directory to all shared services. -See an issue: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1520 +See an issue: https://gitlab.com/gitlab-org/gitlab-runner/issues/1520 ### PostgreSQL service example @@ -475,7 +475,7 @@ fall back to local copy of an image and print a warning: > That is changed in version `v1.8`. To understand why we changed this and how incorrect usage of may be revealed please look into issue -[#1905](https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1905). +[#1905](https://gitlab.com/gitlab-org/gitlab-runner/issues/1905). **When to use this pull policy?** @@ -526,8 +526,8 @@ using its internal IP. [yaml]: http://doc.gitlab.com/ce/ci/yaml/README.html [toml]: ../commands/README.md#configuration-file [alpine linux]: https://alpinelinux.org/ -[special-build]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/tree/master/dockerfiles/build -[service-file]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/tree/master/dockerfiles/service +[special-build]: https://gitlab.com/gitlab-org/gitlab-runner/tree/master/dockerfiles/build +[service-file]: https://gitlab.com/gitlab-org/gitlab-runner/tree/master/dockerfiles/service [privileged]: https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities [entry]: https://docs.docker.com/engine/reference/run/#entrypoint-default-command-to-execute-at-runtime [secpull]: ../security/index.md##usage-of-private-docker-images-with-if-not-present-pull-policy diff --git a/docs/executors/shell.md b/docs/executors/shell.md index cbff42b4ef9ad20dc73ba3f38b3985ad72a48878..04b3b472ade4cbc244a79e447ff767db19d7f15b 100644 --- a/docs/executors/shell.md +++ b/docs/executors/shell.md @@ -58,4 +58,4 @@ projects that are run on this server. Use it only for running builds on a server you trust and own. [run]: ../commands/README.md#gitlab-runner-run -[packages]: https://packages.gitlab.com/runner/gitlab-ci-multi-runner +[packages]: https://packages.gitlab.com/runner/gitlab-runner diff --git a/docs/faq/README.md b/docs/faq/README.md index bfb84a60aae36c6c82578e82de28eabfefa50258..67e100cb6c05c9d10ae26f54a9efb83c32a0559d 100644 --- a/docs/faq/README.md +++ b/docs/faq/README.md @@ -66,7 +66,7 @@ or this article about [control and configure with systemd](https://docs.docker.c This happens due to fact that runner uses `Transfer-Encoding: chunked` which is broken on early version of Nginx (http://serverfault.com/questions/164220/is-there-a-way-to-avoid-nginx-411-content-length-required-errors). -Upgrade your Nginx to newer version. For more information see this issue: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1031 +Upgrade your Nginx to newer version. For more information see this issue: https://gitlab.com/gitlab-org/gitlab-runner/issues/1031 ## I can't run Windows BASH scripts; I'm getting `The system cannot find the batch label specified - buildscript`. @@ -78,7 +78,7 @@ before_script: - call C:\path\to\test.bat ``` -Additional info can be found under issue [#1025](https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1025). +Additional info can be found under issue [#1025](https://gitlab.com/gitlab-org/gitlab-runner/issues/1025). ## My gitlab runner is on Windows. How can I get colored output on the web terminal? @@ -99,7 +99,7 @@ them to win32 calls when running on a Windows system (example: [Colorama](https: If your program is doing the above, then you need to disable that conversion for the CI builds so that the ANSI codes remain in the string. -See issue [#332](https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/332) for more information. +See issue [#332](https://gitlab.com/gitlab-org/gitlab-runner/issues/332) for more information. ## "warning: You appear to have cloned an empty repository." @@ -135,7 +135,7 @@ See [an example of a user issue][1105]. [omnibus-ext-nginx]: http://doc.gitlab.com/omnibus/settings/nginx.html#using-a-non-bundled-web-server [recipes]: https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/web-server -[1105]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1105 +[1105]: https://gitlab.com/gitlab-org/gitlab-runner/issues/1105 ## `"launchctl" failed: exit status 112, Could not find domain for` @@ -298,4 +298,4 @@ working by following the steps below: (unix systems) or by adding the `ZONEINFO` variable to the list of environment variables available for Runner's user through System Settings (Windows). -[zoneinfo-file]: https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/zoneinfo.zip +[zoneinfo-file]: https://gitlab-runner-downloads.s3.amazonaws.com/latest/zoneinfo.zip diff --git a/docs/index.md b/docs/index.md index d415d9140deba5cb7d6ab0426b9c532bf7bb5c20..36d6b7152c9163bc41047518044739fbbce2129d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,7 +4,7 @@ toc: false # GitLab Runner -[](https://gitlab.com/gitlab-org/gitlab-ci-multi-runner) +[](https://gitlab.com/gitlab-org/gitlab-runner) GitLab Runner is the open source project that is used to run your jobs and send the results back to GitLab. It is used in conjunction with [GitLab CI][ci], @@ -127,8 +127,8 @@ Visit [Changelog] to view recent changes. This code is distributed under the MIT license, see the [LICENSE][] file. [ci]: https://about.gitlab.com/gitlab-ci -[Changelog]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/CHANGELOG.md -[contribute]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/CONTRIBUTING.md +[Changelog]: https://gitlab.com/gitlab-org/gitlab-runner/blob/master/CHANGELOG.md +[contribute]: https://gitlab.com/gitlab-org/gitlab-runner/blob/master/CONTRIBUTING.md [golang]: https://golang.org/ -[LICENSE]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/blob/master/LICENSE +[LICENSE]: https://gitlab.com/gitlab-org/gitlab-runner/blob/master/LICENSE [TOML]: https://github.com/toml-lang/toml diff --git a/docs/install/autoscaling.md b/docs/install/autoscaling.md index c1ea569477627bfda958636768e10860e893b196..bbaa646f720762c8ffcc794bdd9b076e018e08f3 100644 --- a/docs/install/autoscaling.md +++ b/docs/install/autoscaling.md @@ -190,7 +190,7 @@ more in [Distributed runners caching][caching]. 1. Stop the Runner: ```bash - killall -SIGQUIT gitlab-ci-multi-runner + killall -SIGQUIT gitlab-runner ``` 1. Wait until the Runner exits. You can check its status with: `gitlab-runner status` @@ -206,7 +206,7 @@ more in [Distributed runners caching][caching]. 1. You can now manage (upgrade or remove) any Docker Machines with the [`docker-machine` command][docker-machine] -[runner-installation]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner#installation +[runner-installation]: https://gitlab.com/gitlab-org/gitlab-runner#installation [docker-machine-installation]: https://docs.docker.com/machine/install-machine/ [runner-autoscaling]: ../configuration/autoscale.md [s3]: https://aws.amazon.com/s3/ diff --git a/docs/install/bleeding-edge.md b/docs/install/bleeding-edge.md index 51c94ebfead5fbfad345f1dcc99ba6c7a43c940b..f85808d24414bdd8ced54e75b6d73599f762eaf5 100644 --- a/docs/install/bleeding-edge.md +++ b/docs/install/bleeding-edge.md @@ -6,59 +6,59 @@ from `master` branch. Use at your own risk. ## Download the standalone binaries -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-linux-386 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-linux-amd64 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-linux-arm -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-darwin-386 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-darwin-amd64 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-windows-386.exe -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-windows-amd64.exe -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-freebsd-386 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-freebsd-amd64 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-freebsd-arm +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-linux-386 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-linux-amd64 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-linux-arm +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-darwin-386 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-darwin-amd64 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-windows-386.exe +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-windows-amd64.exe +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-freebsd-386 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-freebsd-amd64 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-freebsd-arm You can then run the Runner with: ```bash -chmod +x gitlab-ci-multi-runner-linux-amd64 -./gitlab-ci-multi-runner-linux-amd64 run +chmod +x gitlab-runner-linux-amd64 +./gitlab-runner-linux-amd64 run ``` ## Download one of the packages for Debian or Ubuntu -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/deb/gitlab-ci-multi-runner_i386.deb -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/deb/gitlab-ci-multi-runner_amd64.deb -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/deb/gitlab-ci-multi-runner_arm.deb -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/deb/gitlab-ci-multi-runner_armhf.deb +* https://gitlab-runner-downloads.s3.amazonaws.com/master/deb/gitlab-runner_i386.deb +* https://gitlab-runner-downloads.s3.amazonaws.com/master/deb/gitlab-runner_amd64.deb +* https://gitlab-runner-downloads.s3.amazonaws.com/master/deb/gitlab-runner_arm.deb +* https://gitlab-runner-downloads.s3.amazonaws.com/master/deb/gitlab-runner_armhf.deb You can then install it with: ```bash -dpkg -i gitlab-ci-multi-runner_386.deb +dpkg -i gitlab-runner_386.deb ``` ## Download one of the packages for RedHat or CentOS -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-ci-multi-runner_i686.rpm -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-ci-multi-runner_amd64.rpm -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-ci-multi-runner_arm.rpm -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-ci-multi-runner_armhf.rpm +* https://gitlab-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-runner_i686.rpm +* https://gitlab-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-runner_amd64.rpm +* https://gitlab-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-runner_arm.rpm +* https://gitlab-runner-downloads.s3.amazonaws.com/master/rpm/gitlab-runner_armhf.rpm You can then install it with: ```bash -rpm -i gitlab-ci-multi-runner_386.rpm +rpm -i gitlab-runner_386.rpm ``` ## Download any other tagged release Simply replace `master` with either `tag` (v0.2.0 or 0.4.2) or `latest` (the latest -stable). For a list of tags see <https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/tags>. +stable). For a list of tags see <https://gitlab.com/gitlab-org/gitlab-runner/tags>. For example: -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-linux-386 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-386 -* https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v0.2.0/binaries/gitlab-ci-multi-runner-linux-386 +* https://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-linux-386 +* https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-386 +* https://gitlab-runner-downloads.s3.amazonaws.com/v0.2.0/binaries/gitlab-runner-linux-386 If you have problem downloading through `https`, fallback to plain `http`: -* http://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-ci-multi-runner-linux-386 -* http://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-386 -* http://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/v0.2.0/binaries/gitlab-ci-multi-runner-linux-386 +* http://gitlab-runner-downloads.s3.amazonaws.com/master/binaries/gitlab-runner-linux-386 +* http://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-386 +* http://gitlab-runner-downloads.s3.amazonaws.com/v0.2.0/binaries/gitlab-runner-linux-386 diff --git a/docs/install/docker.md b/docs/install/docker.md index f6ed3c700160c21a4dd18bda6ce6f4542f0e001b..016c0b52add4b75d23493009b323eb589cacbda3 100644 --- a/docs/install/docker.md +++ b/docs/install/docker.md @@ -81,7 +81,7 @@ did originally (`-v /srv/gitlab-runner/config:/etc/gitlab-runner` or ## Installing trusted SSL server certificates If your GitLab CI server is using self-signed SSL certificates then you should -make sure the GitLab CI server certificate is trusted by the gitlab-ci-multi-runner +make sure the GitLab CI server certificate is trusted by the gitlab-runner container for them to be able to talk to each other. The `gitlab/gitlab-runner` image is configured to look for the trusted SSL @@ -90,7 +90,7 @@ certificates at `/etc/gitlab-runner/certs/ca.crt`, this can however be changed u Copy the `ca.crt` file into the `certs` directory on the data volume (or container). The `ca.crt` file should contain the root certificates of all the servers you -want gitlab-ci-multi-runner to trust. The gitlab-ci-multi-runner container will +want gitlab-runner to trust. The gitlab-runner container will import the `ca.crt` file on startup so if your container is already running you may need to restart it for the changes to take effect. diff --git a/docs/install/freebsd.md b/docs/install/freebsd.md index 69dd1c6279f4586da4d7cef29260308d27ad0022..534d04485cceecbe225728228c784cbc39aa3938 100644 --- a/docs/install/freebsd.md +++ b/docs/install/freebsd.md @@ -21,10 +21,10 @@ Here are the steps to install and configure GitLab Runner under FreeBSD: ```bash # For amd64 - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-amd64 + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-amd64 # For i386 - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-freebsd-386 + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-freebsd-386 ``` You can download a binary for every available version as described in diff --git a/docs/install/linux-manually.md b/docs/install/linux-manually.md index 9383c24593915a37b492c790044004e1b64a601a..240523c95184bac56a2ee7c148f0801822c85959 100644 --- a/docs/install/linux-manually.md +++ b/docs/install/linux-manually.md @@ -12,9 +12,9 @@ some of the most common problems with GitLab Runner. 1. Simply download one of the binaries for your system: ```sh - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-386 - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64 - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-arm + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-386 + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64 + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-arm ``` You can download a binary for every available version as described in @@ -64,8 +64,8 @@ some of the most common problems with GitLab Runner. 1. Download the binary to replace Runner's executable: ```sh - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-386 - sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-linux-amd64 + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-386 + sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64 ``` You can download a binary for every available version as described in diff --git a/docs/install/linux-repository.md b/docs/install/linux-repository.md index 29352378809f1c4fa76ca38d9753b4c5b37713f1..caef4e1a98360f78e00aae28227c15d5f29ea309 100644 --- a/docs/install/linux-repository.md +++ b/docs/install/linux-repository.md @@ -21,10 +21,10 @@ To install the Runner: ```bash # For Debian/Ubuntu - curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-ci-multi-runner/script.deb.sh | sudo bash + curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh | sudo bash # For RHEL/CentOS - curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-ci-multi-runner/script.rpm.sh | sudo bash + curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash ``` >**Note:** @@ -42,20 +42,20 @@ To install the Runner: ```bash cat > /etc/apt/preferences.d/pin-gitlab-runner.pref <<EOF Explanation: Prefer GitLab provided packages over the Debian native ones - Package: gitlab-ci-multi-runner + Package: gitlab-runner Pin: origin packages.gitlab.com Pin-Priority: 1001 EOF ``` -1. Install `gitlab-ci-multi-runner`: +1. Install `gitlab-runner`: ```bash # For Debian/Ubuntu - sudo apt-get install gitlab-ci-multi-runner + sudo apt-get install gitlab-runner # For RHEL/CentOS - sudo yum install gitlab-ci-multi-runner + sudo yum install gitlab-runner ``` 1. [Register the Runner](../register/index.md) @@ -73,16 +73,16 @@ Simply execute to install latest version: ```bash # For Debian/Ubuntu sudo apt-get update -sudo apt-get install gitlab-ci-multi-runner +sudo apt-get install gitlab-runner # For RHEL/CentOS sudo yum update -sudo yum install gitlab-ci-multi-runner +sudo yum install gitlab-runner ``` ## Manually download packages You can manually download the packages from the following URL: -<https://packages.gitlab.com/runner/gitlab-ci-multi-runner> +<https://packages.gitlab.com/runner/gitlab-runner> [docker executor]: ../executors/docker.md diff --git a/docs/install/osx.md b/docs/install/osx.md index d8b5bbcea349f33f5ff952d7cbaae743f196ee44..d41c1f2e5dfbb6276e3325e8f0f50e6d1cac6778 100644 --- a/docs/install/osx.md +++ b/docs/install/osx.md @@ -8,7 +8,7 @@ download the macOS binary. 1. Download the binary for your system: ```bash - sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64 + sudo curl --output /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64 ``` You can download a binary for every available version as described in @@ -44,7 +44,7 @@ Voila! Runner is installed and will be run after a system reboot. 1. Download the binary to replace the Runner's executable: ```bash - curl -o /usr/local/bin/gitlab-runner https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-darwin-amd64 + curl -o /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-darwin-amd64 ``` You can download a binary for every available version as described in diff --git a/docs/install/windows.md b/docs/install/windows.md index 1d6f268e84e45625201e351b72b894b2422c1eef..2e031004837894cea307e9b9ca9cdf10f1b7c1e4 100644 --- a/docs/install/windows.md +++ b/docs/install/windows.md @@ -97,6 +97,6 @@ If you have issues with the Built-in System Account, please read [How to Configure the Service to Start Up with the Built-in System Account](https://support.microsoft.com/en-us/kb/327545#6) on Microsoft's support website. -[x86]: https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-windows-386.exe -[amd64]: https://gitlab-ci-multi-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-ci-multi-runner-windows-amd64.exe +[x86]: https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-windows-386.exe +[amd64]: https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-windows-amd64.exe [prompt]: https://www.tenforums.com/tutorials/2790-elevated-command-prompt-open-windows-10-a.html diff --git a/docs/monitoring/README.md b/docs/monitoring/README.md index 52c1627f85f095913fc72dadd80084fd97f00680..31f7069189fd447328f038fe15cf2fcc435f14fd 100644 --- a/docs/monitoring/README.md +++ b/docs/monitoring/README.md @@ -40,7 +40,7 @@ ci_docker_machines_provider{state="used"} 0 ci_runner_builds{stage="prepare_script",state="running"} 1 # HELP ci_runner_version_info A metric with a constant '1' value labeled by different build stats fields. # TYPE ci_runner_version_info gauge -ci_runner_version_info{architecture="amd64",branch="add-prometheus-metrics",built_at="2016-12-05 12:37:55 +0100 CET",go_version="go1.7.1",name="gitlab-ci-multi-runner",os="linux",revision="05c35a8",version="1.9.0~beta.19.g05c35a8"} 1 +ci_runner_version_info{architecture="amd64",branch="rename-to-gitlab-runner",built_at="2017-09-11 15:30:31 +0000 +0000",go_version="go1.8.3",name="gitlab-runner",os="linux",revision="35e724fa",version="10.0.0~beta.28.g35e724fa"} 1 # HELP ci_ssh_docker_machines The total number of machines created. # TYPE ci_ssh_docker_machines counter ci_ssh_docker_machines{type="created"} 0 diff --git a/docs/release_process/README.md b/docs/release_process/README.md index a9701fa986204ddb30690e40a60b4f67859d2147..00ca4c83216b520c14cc74fdb3dafb3ed9800a92 100644 --- a/docs/release_process/README.md +++ b/docs/release_process/README.md @@ -207,5 +207,5 @@ Some documentation tips: > This endpoint was introduced in GitLab 8.12 but it will > need at least GitLab Runner v1.7.0 (not released yet) to work. -[runner-milestones]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/milestones +[runner-milestones]: https://gitlab.com/gitlab-org/gitlab-runner/milestones [issue closing pattern]: https://docs.gitlab.com/ce/user/project/issues/automatic_issue_closing.html diff --git a/docs/release_process/how_to_release_runner.md b/docs/release_process/how_to_release_runner.md index 8285a0a792eaa34937eac0b54fc30ac3dddd9ceb..ca1c240048c996ef2560b673d1518967d5d6de3a 100644 --- a/docs/release_process/how_to_release_runner.md +++ b/docs/release_process/how_to_release_runner.md @@ -1,12 +1,12 @@ # How to release GitLab Runner -Permission to push to `master` branch at https://gitlab.com/gitlab-org/gitlab-ci-multi-runner.git +Permission to push to `master` branch at https://gitlab.com/gitlab-org/gitlab-runner.git are required to release the Runner. ## Release stable version 1. Make sure that all required changes are merged in and that the recent CI/CD pipeline - for `master` branch is passing. The easiest way is to check https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/commits/master. + for `master` branch is passing. The easiest way is to check https://gitlab.com/gitlab-org/gitlab-runner/commits/master. 1. Run `./scripts/prepare-changelog-entries.rb` to list merge requests merged since last tag, e.g.: @@ -108,7 +108,7 @@ are required to release the Runner. $ git push ``` -1. Go to https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/pipelines and wait until +1. Go to https://gitlab.com/gitlab-org/gitlab-runner/pipelines and wait until the CI/CD Pipeline for tag will pass. If the latest Pipeline for `master` was passing then following the process above there should be not changes that could fail the pipeline at this time. Any failures should be a temoprary failures related to CI infrastructure diff --git a/docs/security/index.md b/docs/security/index.md index 68767194e39d8a009c0a429967cfb1fa3ce4ef9b..9095e57a47ea0771c2bc3dbbfc3763dcf6bdd886 100644 --- a/docs/security/index.md +++ b/docs/security/index.md @@ -6,7 +6,7 @@ when running your jobs. ## Usage of Shell executor **Generally it's unsafe to run tests with `shell` executors.** The jobs are run -with user's permissions (gitlab-ci-multi-runner's) and can steal code from other +with user's permissions (gitlab-runner's) and can steal code from other projects that are run on this server. Use only it for running the trusted builds. ## Usage of Docker executor @@ -60,7 +60,7 @@ for more information. >**Note:** This applies to installations below 0.5.0 or one's that were upgraded to newer version. -When installing package on Linux systems with Docker installed, `gitlab-ci-multi-runner` +When installing package on Linux systems with Docker installed, `gitlab-runner` will create user that will have permission to access `Docker` daemon. This makes the jobs run with `shell` executor able to access `docker` with full permissions and potentially allows root access to the server. diff --git a/docs/shells/README.md b/docs/shells/README.md index b72e51b5829ff28212d758fe9dd6d2b245afd9aa..2f5720507ae5cd94931b9cc2b83c002bb7d54155 100644 --- a/docs/shells/README.md +++ b/docs/shells/README.md @@ -92,18 +92,18 @@ SET CI_SERVER_NAME=GitLab CI SET CI_SERVER_VERSION= SET CI_SERVER_REVISION= SET GITLAB_CI=true -md "C:\\Multi-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL -echo multiline!nl!tls!nl!chain > C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO -SET GIT_SSL_CAINFO=C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO -md "C:\\Multi-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL -echo multiline!nl!tls!nl!chain > C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE -SET CI_SERVER_TLS_CA_FILE=C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE +md "C:\\GitLab-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL +echo multiline!nl!tls!nl!chain > C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO +SET GIT_SSL_CAINFO=C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO +md "C:\\GitLab-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL +echo multiline!nl!tls!nl!chain > C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE +SET CI_SERVER_TLS_CA_FILE=C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE echo Cloning repository... -rd /s /q "C:\Multi-Runner\builds\0\project-1" 2>NUL 1>NUL +rd /s /q "C:\GitLab-Runner\builds\0\project-1" 2>NUL 1>NUL "git" "clone" "http://gitlab.example.com/group/project.git" "Z:/Gitlab/tests/test/builds/0/project-1" IF %errorlevel% NEQ 0 exit /b %errorlevel% -cd /D "C:\Multi-Runner\builds\0\project-1" +cd /D "C:\GitLab-Runner\builds\0\project-1" IF %errorlevel% NEQ 0 exit /b %errorlevel% echo Checking out db45ad9a as master... @@ -112,13 +112,13 @@ IF %errorlevel% NEQ 0 exit /b %errorlevel% IF EXIST "..\..\..\cache\project-1\pages\master\cache.tgz" ( echo Restoring cache... - "gitlab-ci-multi-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" + "gitlab-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" IF %errorlevel% NEQ 0 exit /b %errorlevel% ) ELSE ( IF EXIST "..\..\..\cache\project-1\pages\master\cache.tgz" ( echo Restoring cache... - "gitlab-ci-multi-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" + "gitlab-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" IF %errorlevel% NEQ 0 exit /b %errorlevel% ) @@ -139,13 +139,13 @@ SET CI_SERVER_NAME=GitLab CI SET CI_SERVER_VERSION= SET CI_SERVER_REVISION= SET GITLAB_CI=true -md "C:\\Multi-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL -echo multiline!nl!tls!nl!chain > C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO -SET GIT_SSL_CAINFO=C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO -md "C:\\Multi-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL -echo multiline!nl!tls!nl!chain > C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE -SET CI_SERVER_TLS_CA_FILE=C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE -cd /D "C:\Multi-Runner\builds\0\project-1" +md "C:\\GitLab-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL +echo multiline!nl!tls!nl!chain > C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO +SET GIT_SSL_CAINFO=C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO +md "C:\\GitLab-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL +echo multiline!nl!tls!nl!chain > C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE +SET CI_SERVER_TLS_CA_FILE=C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE +cd /D "C:\GitLab-Runner\builds\0\project-1" IF %errorlevel% NEQ 0 exit /b %errorlevel% echo $ echo true @@ -166,17 +166,17 @@ SET CI_SERVER_NAME=GitLab CI SET CI_SERVER_VERSION= SET CI_SERVER_REVISION= SET GITLAB_CI=true -md "C:\\Multi-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL -echo multiline!nl!tls!nl!chain > C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO -SET GIT_SSL_CAINFO=C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO -md "C:\\Multi-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL -echo multiline!nl!tls!nl!chain > C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE -SET CI_SERVER_TLS_CA_FILE=C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE -cd /D "C:\Multi-Runner\builds\0\project-1" +md "C:\\GitLab-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL +echo multiline!nl!tls!nl!chain > C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO +SET GIT_SSL_CAINFO=C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO +md "C:\\GitLab-Runner\\builds\\0\\project-1.tmp" 2>NUL 1>NUL +echo multiline!nl!tls!nl!chain > C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE +SET CI_SERVER_TLS_CA_FILE=C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE +cd /D "C:\GitLab-Runner\builds\0\project-1" IF %errorlevel% NEQ 0 exit /b %errorlevel% echo Archiving cache... -"gitlab-ci-multi-runner-windows-amd64.exe" "archive" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" "--path" "vendor" +"gitlab-runner-windows-amd64.exe" "archive" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" "--path" "vendor" IF %errorlevel% NEQ 0 exit /b %errorlevel% goto :EOF @@ -228,26 +228,26 @@ echo "Running on $env:computername..." $GITLAB_CI="true" $env:GITLAB_CI=$GITLAB_CI $GIT_SSL_CAINFO="" - md "C:\Multi-Runner\builds\0\project-1.tmp" -Force | out-null - $GIT_SSL_CAINFO | Out-File "C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" - $GIT_SSL_CAINFO="C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" + md "C:\GitLab-Runner\builds\0\project-1.tmp" -Force | out-null + $GIT_SSL_CAINFO | Out-File "C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" + $GIT_SSL_CAINFO="C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" $env:GIT_SSL_CAINFO=$GIT_SSL_CAINFO $CI_SERVER_TLS_CA_FILE="" - md "C:\Multi-Runner\builds\0\project-1.tmp" -Force | out-null - $CI_SERVER_TLS_CA_FILE | Out-File "C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" - $CI_SERVER_TLS_CA_FILE="C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" + md "C:\GitLab-Runner\builds\0\project-1.tmp" -Force | out-null + $CI_SERVER_TLS_CA_FILE | Out-File "C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" + $CI_SERVER_TLS_CA_FILE="C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" $env:CI_SERVER_TLS_CA_FILE=$CI_SERVER_TLS_CA_FILE echo "Cloning repository..." - if( (Get-Command -Name Remove-Item2 -Module NTFSSecurity -ErrorAction SilentlyContinue) -and (Test-Path "C:\Multi-Runner\builds\0\project-1" -PathType Container) ) { - Remove-Item2 -Force -Recurse "C:\Multi-Runner\builds\0\project-1" - } elseif(Test-Path "C:\Multi-Runner\builds\0\project-1") { - Remove-Item -Force -Recurse "C:\Multi-Runner\builds\0\project-1" + if( (Get-Command -Name Remove-Item2 -Module NTFSSecurity -ErrorAction SilentlyContinue) -and (Test-Path "C:\GitLab-Runner\builds\0\project-1" -PathType Container) ) { + Remove-Item2 -Force -Recurse "C:\GitLab-Runner\builds\0\project-1" + } elseif(Test-Path "C:\GitLab-Runner\builds\0\project-1") { + Remove-Item -Force -Recurse "C:\GitLab-Runner\builds\0\project-1" } & "git" "clone" "https://gitlab.com/group/project.git" "Z:/Gitlab/tests/test/builds/0/project-1" if(!$?) { Exit $LASTEXITCODE } - cd "C:\Multi-Runner\builds\0\project-1" + cd "C:\GitLab-Runner\builds\0\project-1" if(!$?) { Exit $LASTEXITCODE } echo "Checking out db45ad9a as master..." @@ -256,13 +256,13 @@ echo "Running on $env:computername..." if(Test-Path "..\..\..\cache\project-1\pages\master\cache.tgz" -PathType Leaf) { echo "Restoring cache..." - & "gitlab-ci-multi-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" + & "gitlab-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" if(!$?) { Exit $LASTEXITCODE } } else { if(Test-Path "..\..\..\cache\project-1\pages\master\cache.tgz" -PathType Leaf) { echo "Restoring cache..." - & "gitlab-ci-multi-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" + & "gitlab-runner-windows-amd64.exe" "extract" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" if(!$?) { Exit $LASTEXITCODE } } @@ -298,16 +298,16 @@ if(!$?) { Exit $LASTEXITCODE } $GITLAB_CI="true" $env:GITLAB_CI=$GITLAB_CI $GIT_SSL_CAINFO="" - md "C:\Multi-Runner\builds\0\project-1.tmp" -Force | out-null - $GIT_SSL_CAINFO | Out-File "C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" - $GIT_SSL_CAINFO="C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" + md "C:\GitLab-Runner\builds\0\project-1.tmp" -Force | out-null + $GIT_SSL_CAINFO | Out-File "C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" + $GIT_SSL_CAINFO="C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" $env:GIT_SSL_CAINFO=$GIT_SSL_CAINFO $CI_SERVER_TLS_CA_FILE="" - md "C:\Multi-Runner\builds\0\project-1.tmp" -Force | out-null - $CI_SERVER_TLS_CA_FILE | Out-File "C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" - $CI_SERVER_TLS_CA_FILE="C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" + md "C:\GitLab-Runner\builds\0\project-1.tmp" -Force | out-null + $CI_SERVER_TLS_CA_FILE | Out-File "C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" + $CI_SERVER_TLS_CA_FILE="C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" $env:CI_SERVER_TLS_CA_FILE=$CI_SERVER_TLS_CA_FILE - cd "C:\Multi-Runner\builds\0\project-1" + cd "C:\GitLab-Runner\builds\0\project-1" if(!$?) { Exit $LASTEXITCODE } echo "`$ echo true" @@ -343,20 +343,20 @@ if(!$?) { Exit $LASTEXITCODE } $GITLAB_CI="true" $env:GITLAB_CI=$GITLAB_CI $GIT_SSL_CAINFO="" - md "C:\Multi-Runner\builds\0\project-1.tmp" -Force | out-null - $GIT_SSL_CAINFO | Out-File "C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" - $GIT_SSL_CAINFO="C:\Multi-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" + md "C:\GitLab-Runner\builds\0\project-1.tmp" -Force | out-null + $GIT_SSL_CAINFO | Out-File "C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" + $GIT_SSL_CAINFO="C:\GitLab-Runner\builds\0\project-1.tmp\GIT_SSL_CAINFO" $env:GIT_SSL_CAINFO=$GIT_SSL_CAINFO $CI_SERVER_TLS_CA_FILE="" - md "C:\Multi-Runner\builds\0\project-1.tmp" -Force | out-null - $CI_SERVER_TLS_CA_FILE | Out-File "C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" - $CI_SERVER_TLS_CA_FILE="C:\Multi-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" + md "C:\GitLab-Runner\builds\0\project-1.tmp" -Force | out-null + $CI_SERVER_TLS_CA_FILE | Out-File "C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" + $CI_SERVER_TLS_CA_FILE="C:\GitLab-Runner\builds\0\project-1.tmp\CI_SERVER_TLS_CA_FILE" $env:CI_SERVER_TLS_CA_FILE=$CI_SERVER_TLS_CA_FILE - cd "C:\Multi-Runner\builds\0\project-1" + cd "C:\GitLab-Runner\builds\0\project-1" if(!$?) { Exit $LASTEXITCODE } echo "Archiving cache..." - & "gitlab-ci-multi-runner-windows-amd64.exe" "archive" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" "--path" "vendor" + & "gitlab-runner-windows-amd64.exe" "archive" "--file" "..\..\..\cache\project-1\pages\master\cache.tgz" "--path" "vendor" if(!$?) { Exit $LASTEXITCODE } }