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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Cai <jcai@gitlab.com>2021-09-13 20:03:05 +0300
committerJohn Cai <jcai@gitlab.com>2021-09-13 20:50:17 +0300
commit1e905b12c3ce49152134ef2051c5b3195c2a0550 (patch)
tree536c44f18b450d6b32675a3546b149d0ac934593
parent8db16bc798c26ebfbf6daf9940b65be17af8fbe2 (diff)
use prm to test script sectionsjc-test-ff-script-sections
-rw-r--r--.gitlab-ci.yml9
-rw-r--r--.idea/.gitignore8
-rw-r--r--.idea/gitaly.iml9
-rw-r--r--.idea/modules.xml8
-rw-r--r--.idea/vcs.xml6
5 files changed, 40 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fac8c0e9f..ed45bdcfb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -174,6 +174,15 @@ binaries:
matrix:
- GO_VERSION: [ "1.15", "1.16", "1.17" ]
+test-script-sections:
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-${RUBY_VERSION}-golang-${GO_VERSION}-git-2.31
+ script:
+ - echo "hello"
+ - sleep 10
+ - sleep 5
+ tags:
+ - prm
+
test:
<<: *test_definition
<<: *postgres_definition
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 000000000..73f69e095
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/gitaly.iml b/.idea/gitaly.iml
new file mode 100644
index 000000000..5e764c4f0
--- /dev/null
+++ b/.idea/gitaly.iml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="WEB_MODULE" version="4">
+ <component name="Go" enabled="true" />
+ <component name="NewModuleRootManager">
+ <content url="file://$MODULE_DIR$" />
+ <orderEntry type="inheritedJdk" />
+ <orderEntry type="sourceFolder" forTests="false" />
+ </component>
+</module> \ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 000000000..303380694
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+ <component name="ProjectModuleManager">
+ <modules>
+ <module fileurl="file://$PROJECT_DIR$/.idea/gitaly.iml" filepath="$PROJECT_DIR$/.idea/gitaly.iml" />
+ </modules>
+ </component>
+</project> \ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 000000000..94a25f7f4
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+ <component name="VcsDirectoryMappings">
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
+ </component>
+</project> \ No newline at end of file