compiler-research / CppInterOp

A Clang-based C++ Interoperability Library
Other
38 stars 20 forks source link

[ci] Allow rerunning gh actions with debug logging. #187

Closed vgvassilev closed 5 months ago

vgvassilev commented 5 months ago

In this case we open an ssh session for 30 mins.

codecov[bot] commented 5 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (240f6a6) 78.67% compared to head (1425c77) 78.67%.

Additional details and impacted files [![Impacted file tree graph](https://app.codecov.io/gh/compiler-research/CppInterOp/pull/187/graphs/tree.svg?width=650&height=150&src=pr&token=7UWTYSVVT5&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=compiler-research)](https://app.codecov.io/gh/compiler-research/CppInterOp/pull/187?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=compiler-research) ```diff @@ Coverage Diff @@ ## main #187 +/- ## ======================================= Coverage 78.67% 78.67% ======================================= Files 8 8 Lines 3053 3053 ======================================= Hits 2402 2402 Misses 651 651 ```
mcbarton commented 5 months ago

@vgvassilev The follow error needs to be solved with the Windows build CI (occurs when build CppInterOp).

CMake Error: Invalid value used with --config

Could you please fix with this PR?

My suggestion is to try changing https://github.com/vgvassilev/CppInterOp/blob/6d0f691da73e8dad01e3ea2ad1bd8a754722c965/.github/workflows/ci.yml#L309

to

echo "BUILD_TYPE=Release" >> $env:GITHUB_ENV
echo "CODE_COVERAGE=0" >>  $env:GITHUB_ENV
vgvassilev commented 5 months ago

@vgvassilev The follow error needs to be solved with the Windows build CI (occurs when build CppInterOp).

CMake Error: Invalid value used with --config

Could you please fix with this PR?

My suggestion is to try changing https://github.com/vgvassilev/CppInterOp/blob/6d0f691da73e8dad01e3ea2ad1bd8a754722c965/.github/workflows/ci.yml#L309

to

echo "BUILD_TYPE=Release" >> $env:GITHUB_ENV
echo "CODE_COVERAGE=0" >>  $env:GITHUB_ENV

Thanks for the hint. Let's try it.