From 1e905b12c3ce49152134ef2051c5b3195c2a0550 Mon Sep 17 00:00:00 2001 From: John Cai Date: Mon, 13 Sep 2021 13:03:05 -0400 Subject: [PATCH] use prm to test script sections --- .gitlab-ci.yml | 9 +++++++++ .idea/.gitignore | 8 ++++++++ .idea/gitaly.iml | 9 +++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ 5 files changed, 40 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/gitaly.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fac8c0e9f82..ed45bdcfbee 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 00000000000..73f69e09586 --- /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 00000000000..5e764c4f0b9 --- /dev/null +++ b/.idea/gitaly.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000000..303380694cd --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000000..94a25f7f4cb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file -- GitLab