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

Add repo cloning to check-diff crate #6187

Merged
merged 2 commits into from
Aug 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Run check-diff tests in ci
  • Loading branch information
benluiwj authored and ytmimi committed Aug 3, 2024
commit 6e7f0fb2a7a5022d97cd97e05cdfc221d0bdd65a
8 changes: 7 additions & 1 deletion ci/build_and_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 13,13 @@ if "�G_RELEASE_CHANNEL%"=="nightly" (
)
cargo test || exit /b 1

:: Build and test other crates
:: Build and test config_proc_macro
cd config_proc_macro || exit /b 1
cargo build --locked || exit /b 1
cargo test || exit /b 1

:: Build and test check_diff
cd ..
cd check_diff || exit /b 1
cargo build --locked || exit /b 1
cargo test || exit /b 1
8 changes: 7 additions & 1 deletion ci/build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 17,13 @@ else
fi
cargo test

# Build and test other crates
# Build and test config_proc_macro
cd config_proc_macro
cargo build --locked
cargo test

# Build and test check_diff
cd ..
cd check_diff
cargo build --locked
cargo test
Loading