Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
089947d
ci: create workspace for actions
hoolioh Mar 2, 2026
313ee4a
Unify all computation in one action
hoolioh Mar 4, 2026
34635e3
remove depth
hoolioh Mar 5, 2026
c9785c8
Fix call to action
hoolioh Mar 5, 2026
8fd143e
compile action
hoolioh Mar 5, 2026
344aa18
Restore workflows.
hoolioh Mar 5, 2026
32182b8
Modify fuzz to just run the tests if the crates just changed
hoolioh Mar 5, 2026
a20def1
Modify lint workflow
hoolioh Mar 5, 2026
76262ad
restore id
hoolioh Mar 5, 2026
b0ec864
remove if
iunanua Mar 5, 2026
847325b
triggers and log
iunanua Mar 5, 2026
150a5bf
call fetch_base
iunanua Mar 5, 2026
b0048f8
Change workflow triggers
iunanua Mar 5, 2026
e784a9b
Fix base reference name
hoolioh Mar 6, 2026
97e6af2
split test and make ffi dynamic
hoolioh Mar 6, 2026
8610e98
make unit test workflow dynamic
hoolioh Mar 6, 2026
026698c
chore(ci): setup miri crates before running (#1679)
iunanua Mar 6, 2026
16dfffc
Merge branch 'julio/rd-week-unit-test-workflow' into julio/rd-week-dy…
hoolioh Mar 6, 2026
c8cd45f
fix spellcheck
hoolioh Mar 6, 2026
63c0349
make clippy and rustfmt dynamic
hoolioh Mar 7, 2026
36fe200
fix shellcheck
hoolioh Mar 7, 2026
ada2860
fix: search crates by exact name rather than substring
hoolioh Mar 7, 2026
9c957d3
fix: only run tests on crates containing tracing integration tests
hoolioh Mar 7, 2026
cb5bf5f
ci: changed-crates refactor (#1691)
iunanua Mar 9, 2026
2b97a89
Merge branch 'main' into julio/rd-week-dynamic-pipeline
hoolioh Mar 13, 2026
a434e47
chore: clean up actions
hoolioh Mar 13, 2026
0e12df0
fix centos job
hoolioh Mar 13, 2026
f131d99
make centos test dynamic
hoolioh Mar 13, 2026
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
1,295 changes: 814 additions & 481 deletions ...ons/clippy-annotation-reporter/Cargo.lock → .github/actions/Cargo.lock

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions .github/actions/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
# SPDX-License-Identifier: Apache-2.0

[workspace]
members = [
"ci-shared",
"crates-reporter",
"clippy-annotation-reporter",
]
resolver = "2"
180 changes: 0 additions & 180 deletions .github/actions/changed-crates/action.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/actions/ci-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
# SPDX-License-Identifier: Apache-2.0

[package]
name = "ci-shared"
version = "0.1.0"
edition = "2021"
rust-version = "1.84.1"
publish = false

[dependencies]
anyhow = "1.0"
cargo_metadata = "0.23.1"
log = "0.4"
toml = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[dev-dependencies]
tempfile = "3"
Loading
Loading