Skip to content

Commit 17a4f11

Browse files
authored
Revert "Generate completions at compile-time (#118)"
This reverts commit fd4ef23.
1 parent 1e649ab commit 17a4f11

File tree

7 files changed

+53
-152
lines changed

7 files changed

+53
-152
lines changed
+22-36
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Build assets for a Release
22

33
on:
4-
push:
5-
tags:
6-
- "v[0-9]+.[0-9]+.[0-9]+"
4+
release:
5+
types: [published]
76

87
jobs:
98
build-artifact:
@@ -13,52 +12,39 @@ jobs:
1312
os: [ubuntu-latest, windows-latest]
1413
include:
1514
- os: ubuntu-latest
15+
exe_suffix: ""
1616
target: x86_64-unknown-linux-musl
1717
- os: windows-latest
18+
exe_suffix: ".exe"
1819
target: x86_64-pc-windows-msvc
1920
steps:
20-
- uses: actions/checkout@v3
21-
21+
- uses: actions/checkout@v2
2222
- uses: actions-rs/toolchain@v1
2323
with:
2424
profile: minimal
2525
toolchain: stable
2626
target: ${{ matrix.target }}
2727
override: true
28-
2928
- name: Cache dependencies
30-
uses: Swatinem/rust-cache@v2
31-
32-
- name: Build
33-
run: cargo build --release --locked --verbose --target ${{ matrix.target }}
34-
35-
- name: Pack completions
36-
if: matrix.os == 'ubuntu-latest' # Runs only once
37-
run: zip -r completions.zip completions
38-
39-
- name: Upload asset on Linux
40-
uses: softprops/action-gh-release@v1
41-
env:
42-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43-
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest'
29+
uses: Swatinem/rust-cache@v1
30+
- uses: actions-rs/cargo@v1
4431
with:
45-
files: |
46-
target/${{ matrix.target }}/release/dotter
47-
completions.zip
48-
49-
- name: Upload asset on Windows
50-
uses: softprops/action-gh-release@v1
32+
command: build
33+
args: --release --locked --verbose --target ${{ matrix.target }}
34+
- name: Upload asset
35+
uses: actions/[email protected]
5136
env:
5237
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53-
if: startsWith(github.ref, 'refs/tags/') && matrix.os == 'windows-latest'
5438
with:
55-
files: target/${{ matrix.target }}/release/dotter.exe
56-
39+
asset_path: target/${{ matrix.target }}/release/dotter${{ matrix.exe_suffix }}
40+
asset_name: dotter${{ matrix.exe_suffix }}
41+
asset_content_type: application/octet-stream
42+
upload_url: ${{ github.event.release.upload_url }}
5743
cargo-publish:
58-
runs-on: ubuntu-latest
59-
steps:
60-
- uses: actions/checkout@v3
61-
- run: cargo login ${CRATES_IO_TOKEN}
62-
env:
63-
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
64-
- run: cargo publish
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v1
47+
- run: cargo login ${CRATES_IO_TOKEN}
48+
env:
49+
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
50+
- run: cargo publish

.gitignore

-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
1-
# Generated by Cargo
2-
# will have compiled files and executables
3-
debug/
41
target/
5-
6-
# These are backup files generated by rustfmt
7-
**/*.rs.bk
8-
9-
# MSVC Windows builds of rustc generate these, which store debugging information
10-
*.pdb
11-
12-
# Generated by build.rs
13-
completions/

Cargo.lock

-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ license = "Unlicense"
1414
anyhow = "1.*"
1515
clap = { version = "4.0.26", features = ["derive"] }
1616
clap_complete = "4.0.5"
17-
clap_complete_nushell = "0.1.10"
1817
crossterm = "0.25.0"
1918
diff = "0.1.*"
2019
handlebars = { version = "4.*", features = ["script_helper"] }
@@ -39,11 +38,6 @@ mockall = "0.11.3"
3938
# Enable this instead for better failure messages (on nightly only)
4039
# mockall = { version = "0.9.*", features = ["nightly"] }
4140

42-
[build-dependencies]
43-
clap = { version = "4.0.26", features = ["derive"] }
44-
clap_complete = "4.0.5"
45-
clap_complete_nushell = "0.1.10"
46-
4741
[target.'cfg(windows)'.dependencies]
4842
dunce = "1.*"
4943

build.rs

-28
This file was deleted.

src/args.rs

+31-58
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,89 @@
1-
use std::io;
21
use std::path::PathBuf;
32

4-
use clap::{Command, Parser, Subcommand, ValueEnum};
5-
use clap_complete::Generator;
3+
use clap::{Parser, Subcommand};
4+
use clap_complete::Shell;
65

76
/// A small dotfile manager.
87
#[derive(Debug, Parser, Default, Clone)]
98
#[clap(author, version, about, long_about = None)]
109
pub struct Options {
1110
/// Location of the global configuration
12-
#[arg(short, long, default_value = ".dotter/global.toml", global = true)]
11+
#[clap(
12+
short,
13+
long,
14+
value_parser,
15+
default_value = ".dotter/global.toml",
16+
global = true
17+
)]
1318
pub global_config: PathBuf,
1419

1520
/// Location of the local configuration
16-
#[arg(short, long, default_value = ".dotter/local.toml", global = true)]
21+
#[clap(
22+
short,
23+
long,
24+
value_parser,
25+
default_value = ".dotter/local.toml",
26+
global = true
27+
)]
1728
pub local_config: PathBuf,
1829

1930
/// Location of cache file
20-
#[arg(long, default_value = ".dotter/cache.toml")]
31+
#[clap(long, value_parser, default_value = ".dotter/cache.toml")]
2132
pub cache_file: PathBuf,
2233

2334
/// Directory to cache into.
24-
#[arg(long, default_value = ".dotter/cache")]
35+
#[clap(long, value_parser, default_value = ".dotter/cache")]
2536
pub cache_directory: PathBuf,
2637

2738
/// Location of optional pre-deploy hook
28-
#[arg(long, default_value = ".dotter/pre_deploy.sh")]
39+
#[clap(long, value_parser, default_value = ".dotter/pre_deploy.sh")]
2940
pub pre_deploy: PathBuf,
3041

3142
/// Location of optional post-deploy hook
32-
#[arg(long, default_value = ".dotter/post_deploy.sh")]
43+
#[clap(long, value_parser, default_value = ".dotter/post_deploy.sh")]
3344
pub post_deploy: PathBuf,
3445

3546
/// Location of optional pre-undeploy hook
36-
#[arg(long, default_value = ".dotter/pre_undeploy.sh")]
47+
#[clap(long, value_parser, default_value = ".dotter/pre_undeploy.sh")]
3748
pub pre_undeploy: PathBuf,
3849

3950
/// Location of optional post-undeploy hook
40-
#[arg(long, default_value = ".dotter/post_undeploy.sh")]
51+
#[clap(long, value_parser, default_value = ".dotter/post_undeploy.sh")]
4152
pub post_undeploy: PathBuf,
4253

4354
/// Dry run - don't do anything, only print information.
4455
/// Implies -v at least once
45-
#[arg(short = 'd', long = "dry-run", global = true)]
56+
#[clap(short = 'd', long = "dry-run", global = true)]
4657
pub dry_run: bool,
4758

4859
/// Verbosity level - specify up to 3 times to get more detailed output.
4960
/// Specifying at least once prints the differences between what was before and after Dotter's run
50-
#[arg(short = 'v', long = "verbose", action = clap::ArgAction::Count, global = true)]
61+
#[clap(short = 'v', long = "verbose", action = clap::ArgAction::Count, global = true)]
5162
pub verbosity: u8,
5263

5364
/// Quiet - only print errors
54-
#[arg(short, long, global = true)]
65+
#[clap(short, long, value_parser, global = true)]
5566
pub quiet: bool,
5667

5768
/// Force - instead of skipping, overwrite target files if their content is unexpected.
5869
/// Overrides --dry-run.
59-
#[arg(short, long, global = true)]
70+
#[clap(short, long, value_parser, global = true)]
6071
pub force: bool,
6172

6273
/// Assume "yes" instead of prompting when removing empty directories
63-
#[arg(short = 'y', long = "noconfirm", global = true)]
74+
#[clap(short = 'y', long = "noconfirm", global = true)]
6475
pub noconfirm: bool,
6576

6677
/// Take standard input as an additional files/variables patch, added after evaluating
6778
/// `local.toml`. Assumes --noconfirm flag because all of stdin is taken as the patch.
68-
#[arg(short, long, global = true)]
79+
#[clap(short, long, value_parser, global = true)]
6980
pub patch: bool,
7081

7182
/// Amount of lines that are printed before and after a diff hunk.
72-
#[arg(long, default_value = "3")]
83+
#[clap(long, value_parser, default_value = "3")]
7384
pub diff_context_lines: usize,
7485

75-
#[command(subcommand)]
86+
#[clap(subcommand)]
7687
pub action: Option<Action>,
7788
}
7889

@@ -96,50 +107,12 @@ pub enum Action {
96107

97108
/// Generate shell completions
98109
GenCompletions {
99-
/// Set the shell for generating completions [values: bash, elvish, fish, powershell, zsh, nushell]
110+
/// Set the shell for generating completions [values: bash, elvish, fish, powerShell, zsh]
100111
#[clap(long, short)]
101112
shell: Shell,
102113
},
103114
}
104115

105-
#[derive(Debug, Clone, Copy, ValueEnum)]
106-
pub enum Shell {
107-
Bash,
108-
Elvish,
109-
Fish,
110-
Powershell,
111-
Zsh,
112-
Nushell,
113-
}
114-
115-
impl Generator for Shell {
116-
fn file_name(&self, name: &str) -> String {
117-
use clap_complete::Shell::*;
118-
use clap_complete_nushell::Nushell;
119-
match self {
120-
Self::Bash => Bash.file_name(name),
121-
Self::Elvish => Elvish.file_name(name),
122-
Self::Fish => Fish.file_name(name),
123-
Self::Powershell => PowerShell.file_name(name),
124-
Self::Zsh => Zsh.file_name(name),
125-
Self::Nushell => Nushell.file_name(name),
126-
}
127-
}
128-
129-
fn generate(&self, cmd: &Command, buf: &mut dyn io::Write) {
130-
use clap_complete::Shell::*;
131-
use clap_complete_nushell::Nushell;
132-
match self {
133-
Self::Bash => Bash.generate(cmd, buf),
134-
Self::Elvish => Elvish.generate(cmd, buf),
135-
Self::Fish => Fish.generate(cmd, buf),
136-
Self::Powershell => PowerShell.generate(cmd, buf),
137-
Self::Zsh => Zsh.generate(cmd, buf),
138-
Self::Nushell => Nushell.generate(cmd, buf),
139-
}
140-
}
141-
}
142-
143116
pub fn get_options() -> Options {
144117
let mut opt = Options::parse();
145118
if opt.dry_run {

src/main.rs

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ Otherwise, run `dotter undeploy` as root, remove cache.toml and cache/ folders,
109109
.block_on(watch::watch(opt))
110110
.context("watch repository")?;
111111
}
112-
113112
args::Action::GenCompletions { shell } => {
114113
generate(
115114
shell,

0 commit comments

Comments
 (0)