Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Commits
aeb8936e
Commit
aeb8936e
authored
4 years ago
by
Dariusz Kędzierski
Browse files
Options
Downloads
Patches
Plain Diff
All benchmarks moved to one job to avoid starting and stoppng server several times
parent
3ff7f47c
No related branches found
No related tags found
2 merge requests
!456
Release candidate v1 24
,
!246
API tests execution time reports
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yaml
+11
-103
11 additions, 103 deletions
.gitlab-ci.yaml
with
11 additions
and
103 deletions
.gitlab-ci.yaml
+
11
−
103
View file @
aeb8936e
...
@@ -441,123 +441,31 @@ tags_api_smoketest_negative:
...
@@ -441,123 +441,31 @@ tags_api_smoketest_negative:
tags
:
tags
:
-
hivemind-light-job
-
hivemind-light-job
api_smoketest_benchmark
:
bridge_api_smoketest_benchmark
:
stage
:
benchmark-tests
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
extends
:
.benchmark-tests-common
script
:
script
:
-
>
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_benchmark_bridge
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_patterns/ api_benchmark_bridge
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_negative/ api_benchmark_bridge_negative
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_benchmark_condenser
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_negative/ api_benchmark_condenser_negative
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_patterns/ api_benchmark_database
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_negative/ api_benchmark_database_negative
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_patterns/ api_benchmark_follow
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_negative/ api_benchmark_follow_negative
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_patterns/ api_benchmark_tags
-
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_negative/ api_benchmark_tags_negative
artifacts
:
artifacts
:
when
:
always
when
:
always
paths
:
paths
:
-
tavern_benchmark_report_api_benchmark_bridge.html
-
tavern_benchmark_report_api_benchmark_bridge.html
bridge_api_smoketest_negative_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/bridge_api_negative/ api_benchmark_bridge_negative
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_bridge_negative.html
-
tavern_benchmark_report_api_benchmark_bridge_negative.html
condenser_api_smoketest_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_patterns/ api_benchmark_condenser
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_condenser.html
-
tavern_benchmark_report_api_benchmark_condenser.html
condenser_api_smoketest_negative_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/condenser_api_negative/ api_benchmark_condenser_negative
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_condenser_negative.html
-
tavern_benchmark_report_api_benchmark_condenser_negative.html
database_api_smoketest_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_patterns/ api_benchmark_database
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_database.html
-
tavern_benchmark_report_api_benchmark_database.html
database_api_smoketest_negative_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/database_api_negative/ api_benchmark_database_negative
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_database_negative.html
-
tavern_benchmark_report_api_benchmark_database_negative.html
follow_api_smoketest_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_patterns/ api_benchmark_follow
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_follow.html
-
tavern_benchmark_report_api_benchmark_follow.html
follow_api_smoketest_negative_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/follow_api_negative/ api_benchmark_follow_negative
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_follow_negative.html
-
tavern_benchmark_report_api_benchmark_follow_negative.html
tags_api_smoketest_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_patterns/ api_benchmark_tags
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_tags.html
-
tavern_benchmark_report_api_benchmark_tags.html
tags_api_smoketest_negative_benchmark
:
stage
:
benchmark-tests
extends
:
.benchmark-tests-common
script
:
-
>
scripts/ci_start_api_benchmark.sh localhost $HIVEMIND_HTTP_PORT tests/tests_api/hivemind/tavern/tags_api_negative/ api_benchmark_tags_negative
artifacts
:
when
:
always
paths
:
-
tavern_benchmark_report_api_benchmark_tags_negative.html
-
tavern_benchmark_report_api_benchmark_tags_negative.html
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment