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

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • idrozdov/gitlab-shell
  • mmj/gitlab-shell
2 results
Show changes
Commits on Source (1)
Loading
@@ -6,6 +6,24 @@ info: To determine the technical writer assigned to the Stage/Group associated w
Loading
@@ -6,6 +6,24 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Beginner's guide to GitLab Shell contributions # Beginner's guide to GitLab Shell contributions
In order to build the binaries a single `make` command can be run:
```shell
make
```
If the command fails due to an error in `gssapi`, make sure that a `Kerberos` implementation is installed. For MacOS it's:
```shell
brew install heimdal
```
It may also require specifying `CGO_CFLAGS`:
```shell
CGO_CFLAGS="-I/opt/homebrew/opt/heimdal/include" make
```
## Check ## Check
Checks if GitLab API access and Redis via internal API can be reached: Checks if GitLab API access and Redis via internal API can be reached:
Loading
Loading