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

Reset tutorial lockfiles between ffi ci jobs #5649

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Changes from all commits
Commits
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
13 changes: 13 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ description = "Run all tests for the CI 'test-c' job"
category = "CI"
dependencies = [
"test-c",
# Can be removed after LLVM nightly is updated past May 2024, but it's fine to keep in
# to prevent such problems in the future
"internal-reset-tutorial-lockfiles",
"test-c-tiny",
"test-cpp",
]
Expand All @@ -128,6 +131,9 @@ description = "Run all tests for the CI 'test-js' job"
category = "CI"
dependencies = [
"test-npm",
# Can be removed after LLVM nightly is updated past May 2024, but it's fine to keep in
# to prevent such problems in the future
"internal-reset-tutorial-lockfiles",
"test-tinywasm",
]

Expand Down Expand Up @@ -343,3 +349,10 @@ else
echo "forced-toolchain environment not required"
end
'''

[tasks.internal-reset-tutorial-lockfiles]
description = "Reset changes to tutorial lockfiles (useful to clean up between CI jobs)"
category = "ICU4X CI internal"
command = "git"
args = ["checkout", "@", "--", "tutorials/**/Cargo.lock"]