Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finish apply_dist() #1730

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c80e6da
Correct name of dist.artifacts.checksum in v1 config.
duckinator Jan 28, 2025
d6ae70c
Implement apply_ci_common()
duckinator Jan 28, 2025
c4f1358
Add apply_ci_github().
duckinator Jan 28, 2025
bd56b71
Split init/apply_dist.rs into init/apply_dist/*
duckinator Jan 28, 2025
bb124a8
Finish apply_installers_powershell() and apply_installers_shell().
duckinator Jan 29, 2025
63ca126
resolve a bunch of linter errors
duckinator Jan 30, 2025
c70be85
improve phrasing of comments in generated configs
duckinator Jan 30, 2025
15ec92a
add tests for init/apply_dist/ci
duckinator Jan 30, 2025
d8de1be
fix cargo-fmt warnings
duckinator Feb 5, 2025
472ea43
Add pretty_assertions as a dev dependency.
duckinator Feb 7, 2025
716f2cc
Finish apply_dist::artifacts::apply()
duckinator Feb 7, 2025
67eeb3d
Finish apply_dist::ci::apply()
duckinator Feb 7, 2025
ffd3d11
Finish apply_dist::installers::apply()
duckinator Feb 7, 2025
9472ee9
Add skip_optional_value() and skip_string_list().
duckinator Feb 10, 2025
32c1a08
Actually use skip_optional_value() and skip_string_list().
duckinator Feb 10, 2025
3e59768
Comment out currently-unused use statements that I will likely need l…
duckinator Feb 11, 2025
41601ce
Fix cargo fmt warnings.
duckinator Feb 11, 2025
664cb19
Move use statement to avoid warning.
duckinator Feb 13, 2025
4115685
Finish apply_dist::builds::apply().
duckinator Feb 13, 2025
6604dc9
Finish apply_dist::publishers::apply()
duckinator Feb 13, 2025
4278de8
Fix a bunch of clippy warnings.
duckinator Feb 13, 2025
f7d3066
Fix cargo-fmt warnings.
duckinator Feb 13, 2025
2a805ff
Integrate apply_dist::system_dependencies into apply_dist::build
duckinator Feb 13, 2025
a2ceec1
Finish apply_dist::hosts
duckinator Feb 13, 2025
290f2e0
Fix clippy + cargo-fmt warnings.
duckinator Feb 13, 2025
5402a1f
Remove commented-out code, since it has all been replaced.
duckinator Feb 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ current_platform = "0.2.0"
color-backtrace = "0.6.1"
backtrace = "0.3.74"
target-lexicon = "0.12.16"
pretty_assertions = "1.4.1"

[workspace.metadata.release]
shared-version = true
Expand Down
1 change: 1 addition & 0 deletions cargo-dist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ schemars.workspace = true
insta.workspace = true
tar.workspace = true
flate2.workspace = true
pretty_assertions.workspace = true

[package.metadata.dist]
features = ["fear_no_msrv", "tls_native_roots"]
Expand Down
Loading
Loading