Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
core
picodata
Merge requests
!978
ci: run release tests on a separate CI job
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ci: run release tests on a separate CI job
gmoshkin/split-debug-release-jobs
into
master
Overview
2
Commits
3
Pipelines
10
Changes
2
Merged
Georgy Moshkin
requested to merge
gmoshkin/split-debug-release-jobs
into
master
11 months ago
Overview
2
Commits
3
Pipelines
10
Changes
2
Expand
Summary
ci: run release tests on a separate CI job
Changes should be cherry-picked to 24.2: no
0
0
Merge request reports
Compare
master
version 8
7b7bae8a
9 months ago
version 7
81cfb86d
9 months ago
version 6
2dc8d98c
9 months ago
version 5
36f446dc
9 months ago
version 4
4aaffbc9
9 months ago
version 3
11d56c52
9 months ago
version 2
0ccd8d8e
9 months ago
version 1
3c22b813
11 months ago
master (base)
and
latest version
latest version
281b48b5
3 commits,
9 months ago
version 8
7b7bae8a
3 commits,
9 months ago
version 7
81cfb86d
3 commits,
9 months ago
version 6
2dc8d98c
3 commits,
9 months ago
version 5
36f446dc
3 commits,
9 months ago
version 4
4aaffbc9
3 commits,
9 months ago
version 3
11d56c52
1 commit,
9 months ago
version 2
0ccd8d8e
1 commit,
9 months ago
version 1
3c22b813
1 commit,
11 months ago
2 files
+
46
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
test/conftest.py
+
3
−
4
Options
@@ -1915,9 +1915,6 @@ class AuditServer:
self
.
port
=
port
self
.
process
:
Process
|
None
=
None
self
.
queue
:
Queue
[
Dict
[
str
,
Any
]]
=
Queue
(
maxsize
=
10_000
)
self
.
target
=
json
.
loads
(
subprocess
.
check_output
([
"
cargo
"
,
"
metadata
"
,
"
--format-version=1
"
])
)[
"
target_directory
"
]
def
start
(
self
)
->
None
:
if
self
.
process
is
not
None
:
@@ -1947,8 +1944,10 @@ class AuditServer:
self
.
process
.
start
()
def
cmd
(
self
,
binary_path
:
str
)
->
str
:
binary
=
os
.
path
.
realpath
(
os
.
path
.
join
(
self
.
target
,
"
debug/gostech-audit-log
"
))
target_dir
=
os
.
path
.
dirname
(
binary_path
)
binary
=
os
.
path
.
realpath
(
os
.
path
.
join
(
target_dir
,
"
gostech-audit-log
"
))
args
=
f
"
--url http://
{
BASE_HOST
}
:
{
self
.
port
}
/log --debug
"
return
f
"
|
{
binary
}
{
args
}
"
def
logs
(
self
)
->
List
[
Dict
[
str
,
Any
]]:
Loading