Skip to content

Commit a595135

Browse files
committed
workflow
1 parent 10c4972 commit a595135

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/build-on-windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ jobs:
7171

7272
- name: Run tests (Debug)
7373
working-directory: ${{env.DEBUG_BUILD_DIR}}
74-
run: .\hic-tests-dbg.exe --gtest_output=xml:hic-tests-dbg.xml
74+
run: .\hktests-dbg.exe --gtest_output=xml:hktests-dbg.xml
7575

7676
- name: Run tests (Release)
7777
working-directory: ${{env.RELEASE_BUILD_DIR}}
78-
run: .\hic-tests-rel.exe --gtest_output=xml:hic-tests-rel.xml
78+
run: .\hktests-rel.exe --gtest_output=xml:hktests-rel.xml
7979

8080
# Each file is differently named by adding the job name of the matrix as a suffix.
8181
# This enables the "Unit Test Result" display to show all individual test runs of the matrix.
@@ -86,8 +86,8 @@ jobs:
8686
with:
8787
name: test-results
8888
path: |
89-
${{env.DEBUG_BUILD_DIR}}\hic-tests-dbg.xml
90-
${{env.RELEASE_BUILD_DIR}}\hic-tests-rel.xml
89+
${{env.DEBUG_BUILD_DIR}}\hktests-dbg.xml
90+
${{env.RELEASE_BUILD_DIR}}\hktests-rel.xml
9191
9292
#
9393
# - name: 📑 Generate CodeCoverage Report (Debug)

src/utility/git.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include <algorithm>
1111
#include <utility>
1212
#include <cassert>
13+
#include <exception>
1314

1415
namespace hk {
1516

src/utility/log.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class progress {
128128
template<typename... Args>
129129
progress(std::format_string<Args...> fmt, Args&&... args) : _msg(std::format(std::move(fmt), std::forward<Args...>(args)...))
130130
{
131-
update();
131+
//update();
132132
}
133133

134134
progress& operator=(float value)
@@ -159,7 +159,7 @@ class progress {
159159
void set_message(std::format_string<Args...> fmt, Args&&... args)
160160
{
161161
_msg = std::format(std::move(fmt), std::forward<Args...>(args)...);
162-
update();
162+
//update();
163163
}
164164

165165
private:

src/utility/path.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <chrono>
66
#include <system_error>
77
#include <print>
8+
#include <exception>
89

910
namespace hk {
1011

0 commit comments

Comments
 (0)