Skip to content

Commit

Permalink
test msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
SterlingT3485 committed Nov 19, 2024
1 parent e6e853e commit 6c089de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ jobs:
msvc-build-test:
name: msvc build & test
needs: [sanity-checks, python-lint-check, generate-binary-datasets]
#needs: [sanity-checks, python-lint-check, generate-binary-datasets]
runs-on: self-hosted-windows
env:
# Shorten build path as much as possible
Expand Down
1 change: 1 addition & 0 deletions src/common/file_system/local_file_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ void LocalFileSystem::copyFile(const std::string& from, const std::string& to) {
}

void LocalFileSystem::createDir(const std::string& dir) const {
std::cout<<"CREATE:"<<dir<<std::endl;
try {
if (std::filesystem::exists(dir)) {
// LCOV_EXCL_START
Expand Down

0 comments on commit 6c089de

Please sign in to comment.