mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 03:00:11 +01:00
docs: update gitlab docs urls
GitLab finally dropped the split between "docs for paid users" and "docs for free users", and in the process re-shuffled some things. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33694>
This commit is contained in:
parent
a9da750388
commit
8364782222
5 changed files with 7 additions and 7 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
- Check if a new version of Mesa is available which might have fixed the problem.
|
- Check if a new version of Mesa is available which might have fixed the problem.
|
||||||
- If you can, check if the latest development version (git main) works better.
|
- If you can, check if the latest development version (git main) works better.
|
||||||
- Check if your bug has already been reported here.
|
- Check if your bug has already been reported here.
|
||||||
- For any logs, backtraces, etc - use [code blocks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks), GitLab removes line breaks without this.
|
- For any logs, backtraces, etc - use [code blocks](https://docs.gitlab.com/user/markdown/#code-spans-and-blocks), GitLab removes line breaks without this.
|
||||||
- Do not paste long logs directly into the description. Use https://gitlab.freedesktop.org/-/snippets/new, attachments, or a pastebin with a long expiration instead.
|
- Do not paste long logs directly into the description. Use https://gitlab.freedesktop.org/-/snippets/new, attachments, or a pastebin with a long expiration instead.
|
||||||
- As examples of good bug reports you may review one of these - #2598, #2615, #2608
|
- As examples of good bug reports you may review one of these - #2598, #2615, #2608
|
||||||
|
|
||||||
|
|
@ -44,7 +44,7 @@ Example:
|
||||||
|
|
||||||
### System information
|
### System information
|
||||||
|
|
||||||
Please post `inxi -GSC -xx` output ([fenced with triple backticks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks)) OR fill information below manually
|
Please post `inxi -GSC -xx` output ([fenced with triple backticks](https://docs.gitlab.com/user/markdown/#code-spans-and-blocks)) OR fill information below manually
|
||||||
|
|
||||||
|
|
||||||
- OS: (`cat /etc/os-release | grep "NAME"`)
|
- OS: (`cat /etc/os-release | grep "NAME"`)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
- Check if a new version of Mesa is available which might have fixed the problem.
|
- Check if a new version of Mesa is available which might have fixed the problem.
|
||||||
- If you can, check if the latest development version (git main) works better.
|
- If you can, check if the latest development version (git main) works better.
|
||||||
- Check if your bug has already been reported here.
|
- Check if your bug has already been reported here.
|
||||||
- For any logs, backtraces, etc - use [code blocks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks), GitLab removes line breaks without this.
|
- For any logs, backtraces, etc - use [code blocks](https://docs.gitlab.com/user/markdown/#code-spans-and-blocks), GitLab removes line breaks without this.
|
||||||
- Do not paste long logs directly into the description. Use https://gitlab.freedesktop.org/-/snippets/new, attachments, or a pastebin with a long expiration instead.
|
- Do not paste long logs directly into the description. Use https://gitlab.freedesktop.org/-/snippets/new, attachments, or a pastebin with a long expiration instead.
|
||||||
- As examples of good bug reports you may review one of these - #2598, #2615, #2608
|
- As examples of good bug reports you may review one of these - #2598, #2615, #2608
|
||||||
|
|
||||||
|
|
@ -16,7 +16,7 @@ The title should effectively distinguish this bug report from others and be spec
|
||||||
|
|
||||||
### System information
|
### System information
|
||||||
|
|
||||||
Please post `inxi -GSC -xx` output ([fenced with triple backticks](https://docs.gitlab.com/ee/user/markdown.html#code-spans-and-blocks)) OR fill information below manually
|
Please post `inxi -GSC -xx` output ([fenced with triple backticks](https://docs.gitlab.com/user/markdown/#code-spans-and-blocks)) OR fill information below manually
|
||||||
|
|
||||||
|
|
||||||
- OS: (`cat /etc/os-release | grep "NAME"`)
|
- OS: (`cat /etc/os-release | grep "NAME"`)
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# This file contains the GitLab handle of the maintainers/reviewers for
|
# This file contains the GitLab handle of the maintainers/reviewers for
|
||||||
# a given file:
|
# a given file:
|
||||||
# https://docs.gitlab.com/ce/user/project/code_owners.html
|
# https://docs.gitlab.com/user/project/codeowners/
|
||||||
#
|
#
|
||||||
# Consider these as the list of people who want to be involved in MRs
|
# Consider these as the list of people who want to be involved in MRs
|
||||||
# touching these files/folders, and whom you can ask your questions and
|
# touching these files/folders, and whom you can ask your questions and
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ from pathlib import Path
|
||||||
GITLAB_URL = "https://gitlab.freedesktop.org"
|
GITLAB_URL = "https://gitlab.freedesktop.org"
|
||||||
TOKEN_DIR = Path(os.getenv("XDG_CONFIG_HOME") or Path.home() / ".config")
|
TOKEN_DIR = Path(os.getenv("XDG_CONFIG_HOME") or Path.home() / ".config")
|
||||||
|
|
||||||
# Known GitLab token prefixes: https://docs.gitlab.com/ee/security/token_overview.html#token-prefixes
|
# Known GitLab token prefixes: https://docs.gitlab.com/security/tokens/#token-prefixes
|
||||||
TOKEN_PREFIXES: dict[str, str] = {
|
TOKEN_PREFIXES: dict[str, str] = {
|
||||||
"Personal access token": "glpat-",
|
"Personal access token": "glpat-",
|
||||||
"OAuth Application Secret": "gloas-",
|
"OAuth Application Secret": "gloas-",
|
||||||
|
|
|
||||||
|
|
@ -215,7 +215,7 @@ faster personal machine as a runner. You can find the gitlab-runner
|
||||||
package in Debian, or use GitLab's own builds.
|
package in Debian, or use GitLab's own builds.
|
||||||
|
|
||||||
To do so, follow `GitLab's instructions
|
To do so, follow `GitLab's instructions
|
||||||
<https://docs.gitlab.com/ee/ci/runners/runners_scope.html#create-a-project-runner-with-a-runner-authentication-token>`__
|
<https://docs.gitlab.com/ci/runners/runners_scope/#create-a-project-runner-with-a-runner-authentication-token>`__
|
||||||
to register your personal GitLab runner in your Mesa fork. Then, tell
|
to register your personal GitLab runner in your Mesa fork. Then, tell
|
||||||
Mesa how many jobs it should serve (``concurrent=``) and how many
|
Mesa how many jobs it should serve (``concurrent=``) and how many
|
||||||
cores those jobs should use (``FDO_CI_CONCURRENT=``) by editing these
|
cores those jobs should use (``FDO_CI_CONCURRENT=``) by editing these
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue