Skip to content

Commit 8a281ba

Browse files
committed
Cleanup
1 parent 63eef0a commit 8a281ba

File tree

16 files changed

+47
-226
lines changed

16 files changed

+47
-226
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

Cargo.lock

Lines changed: 0 additions & 186 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

k8s/jjs/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
replicaCount: 1
22

33
image:
4-
repositoryPrefix: cr.yandex/crpnhs4sen6hhp1m1mmq/
4+
repositoryPrefix: docker.pkg.github.com/jjs-dev/jjs/
55
# Overrides the image tag whose default is the chart appVersion.
66
tag: latest
77

src/client/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub mod prelude {
66
}
77

88
pub mod models {
9-
pub use openapi::{api_version, run, run_patch, run_submit_simple_params, miscellaneous};
9+
pub use openapi::{api_version, miscellaneous, run, run_patch, run_submit_simple_params};
1010
}
1111
#[derive(Clone)]
1212
pub struct ApiClient {

src/dist-builder/Cargo.toml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@ version = "0.1.0"
44
authors = ["Mikail Bagishov <bagishov.mikail@yandex.ru>"]
55
edition = "2018"
66

7-
8-
#[[bin]]
9-
#name = "configure"
10-
#path = "bin/configure.rs"
11-
12-
#[[bin]]
13-
#name = "make"
14-
#path = "bin/make.rs"
15-
167
[dependencies]
178
structopt = "0.3.13"
189
serde_json = "1.0.51"

src/dist-builder/src/artifact.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
pub(crate) struct Artifact {
42
pub(crate) package_name: String,
53
}

src/dist-builder/src/builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl<'a> Builder<'a> {
4141
cmd.arg("--out-dir").arg(self.params.build.join("jjs-out"));
4242
cmd.arg("-Zpackage-features");
4343
for feat in &self.params.cfg.build.features {
44-
cmd.arg("--features").arg(feat);
44+
cmd.arg("--features").arg(feat);
4545
}
4646
cmd.arg("--locked");
4747
for pkg in &self.packages {

src/dist-builder/src/cfg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub struct BuildConfig {
1919
pub profile: BuildProfile,
2020
pub target: Option<String>,
2121
pub tool_info: ToolInfo,
22-
pub features: Vec<String>
22+
pub features: Vec<String>,
2323
}
2424

2525
#[derive(Debug, Clone)]

src/dist-builder/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use crate::{
2424
package::{OtherPackage, RustPackage, Section},
2525
};
2626
use anyhow::Context as _;
27-
use std::{path::PathBuf};
27+
use std::path::PathBuf;
2828
use structopt::StructOpt as _;
2929

3030
#[derive(structopt::StructOpt)]
@@ -73,7 +73,7 @@ struct Opt {
7373
docker_name: Option<String>,
7474
/// Features to enable
7575
#[structopt(long = "enable-feature")]
76-
features: Vec<String>
76+
features: Vec<String>,
7777
}
7878

7979
fn find_docker<'a>() -> &'a str {
@@ -110,7 +110,7 @@ fn main() {
110110
target: opt.target.clone(),
111111
profile,
112112
tool_info,
113-
features: opt.features.clone()
113+
features: opt.features.clone(),
114114
};
115115
let mut comps_config = cfg::ComponentsConfig {
116116
components: Vec::new(),

src/invoker-api/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub struct InvokeTask {
9393
/// Invocation id (will be preserved by invoker)
9494
pub invocation_id: uuid::Uuid,
9595
/// Run source
96-
pub run_source: Vec<u8>
96+
pub run_source: Vec<u8>,
9797
}
9898

9999
/// Pass this to invoker running in CLI mode

0 commit comments

Comments
 (0)