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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tmp
AgeCommit message (Collapse)Author
2022-07-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-05Add missing .gitkeep fileStan Hu
Somehow this file was not included when merging https://gitlab.com/gitlab-org/gitlab/-/merge_requests/86545.
2021-01-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-03Fix Git ignore for tmp/, shared/, and plugins/Yorick Peterse
The old rules meant that any future changes to these directories would require the use of `git add -f` to be staged. This is problematic for the upcoming FOSS-only mirror of GitLab. Any changes to be synced to this mirror are staged using `git add --all .`, which due to the Git ignore rules would not add the tmp/ and shared/ directories. This then leads to various specs failing because they expect certain sub-directories of these directories to be available. This commit changes the rules so that we include the .gitkeep files, ignore other files, and completely ignore anything in tmp/test. This requires that the rules are specified in tmp/.gitignore and shared/.gitignore, instead of the top-level .gitignore, without this I could not get Git to include the .gitkeep files properly.
2019-07-02Use separate Prometheus metrics dirs in dev/testAleksei Lipniagov
Store Sidekiq and Web server metrics from Prometheus in separate directories in `development` and `test` environments.
2017-06-02Move Prometheus presentation logic to PrometheusTextPawel Chojnacki
+ Use NullMetrics to mock metrics when unused + Use method_missing in NullMetrics mocking + Update prometheus gem to version that correctly uses transitive dependencies + Ensure correct folders are used in Multiprocess prometheus client tests. + rename Sessions controller's metric
2017-06-02Ensure prometheus_data_dir existsPawel Chojnacki
2017-03-21Add gitaly source installation instructionsJacob Vosmaer
2015-10-04Remove tmp/.gitkeep Lasse Schuirmann
This file is obsolete since 5b4aba5f as it exists solely for the directory to exist.
2014-03-31Make sure important directories exist in gitRobert Speicher
Ensures the following directories exist after a git clone: - public/uploads - tmp/pids - tmp/sockets
2012-09-04Add tmp/.gitkeep file to ensure tmp folder exists on cloneRobert Speicher
The install guide lists it as a requirement, so we might as well have it by default.