Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
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
nodes
typescript
duniter
Commits
7bbb1f92
Commit
7bbb1f92
authored
1 year ago
by
Cédric Moreau
Committed by
Cédric Moreau
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
fix: remove remaining x86_64 GVA restrictions
parent
cbb2643b
No related branches found
No related tags found
1 merge request
!1417
build: enable gva for all architectures
Pipeline
#32342
passed
1 year ago
Stage: tests
Stage: package
Stage: quality
Stage: integration
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
rust-bins/duniter-cli/src/duniter_ts_args.rs
+0
-1
0 additions, 1 deletion
rust-bins/duniter-cli/src/duniter_ts_args.rs
rust-bins/duniter-cli/src/main.rs
+0
-3
0 additions, 3 deletions
rust-bins/duniter-cli/src/main.rs
with
0 additions
and
4 deletions
rust-bins/duniter-cli/src/duniter_ts_args.rs
+
0
−
1
View file @
7bbb1f92
...
...
@@ -82,7 +82,6 @@ pub(crate) fn gen_duniter_ts_args(
gen_start_args
(
start_args
,
&
mut
duniter_ts_args
);
gen_webstart_args
(
webstart_args
,
&
mut
duniter_ts_args
);
}
#[cfg(target_arch
=
"x86_64"
)]
DuniterCommand
::
Gva
(
_
)
=>
unreachable!
(),
DuniterCommand
::
Start
(
ref
start_args
)
=>
{
duniter_ts_args
.push
(
"direct_start"
.to_owned
());
...
...
This diff is collapsed.
Click to expand it.
rust-bins/duniter-cli/src/main.rs
+
0
−
3
View file @
7bbb1f92
...
...
@@ -32,7 +32,6 @@ mod sync;
use
anyhow
::{
anyhow
,
Result
};
use
daemonize_me
::
Daemon
;
#[cfg(target_arch
=
"x86_64"
)]
use
duniter_gva_conf
::
GvaCommand
;
use
logwatcher
::{
LogWatcher
,
LogWatcherAction
};
use
nix
::{
errno
::
Errno
,
sys
::
signal
::
Signal
,
unistd
::
Pid
,
Error
};
...
...
@@ -82,7 +81,6 @@ enum DuniterCommand {
after_help(
"Some advanced options are hidden for readability."
)
)]
Config
(
Box
<
config
::
DuniterCoreConfigArgs
>
),
#[cfg(target_arch
=
"x86_64"
)]
#[structopt(display_order(
1
))]
Gva
(
GvaCommand
),
/// Launch the configuration wizard.
...
...
@@ -219,7 +217,6 @@ fn main() -> Result<()> {
let
log_level_filter
=
get_log_level
(
args
.log
)
?
;
let
profile_path
=
get_profile_path
(
args
.profile
.as_deref
())
?
;
#[cfg(target_arch
=
"x86_64"
)]
if
let
DuniterCommand
::
Gva
(
gva_command
)
=
args
.command
{
return
gva_command
.command
(
profile_path
);
}
...
...
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