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

WIP: Debug Windows API wrappers #4556

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Linux - Tests
os: ubuntu-latest
run_in_pr : false
run_in_pr : true
BUILD_DOCS : false
DEPLOY_DOCS : false
PACKAGE : false
Expand All @@ -90,7 +90,7 @@ jobs:

- name: macOS - Tests
os: macos-latest
run_in_pr : false
run_in_pr : true
BUILD_DOCS : false
DEPLOY_DOCS : false
PACKAGE : false
Expand All @@ -114,7 +114,7 @@ jobs:
RUN_TESTS : false

- name: Windows - Tests
run_in_pr : false
run_in_pr : true
os: windows-latest
BUILD_DOCS : false
DEPLOY_DOCS : false
Expand Down Expand Up @@ -267,7 +267,8 @@ jobs:
# Disable MinGW's path conversion, see #1035.
if [ "$RUNNER_OS" == "Windows" ]; then export MSYS_NO_PATHCONV=1; fi
# Run tests
ctest ${CTEST_ARGS} || ctest ${CTEST_ARGS} --rerun-failed || ctest ${CTEST_ARGS} --rerun-failed
ctest ${CTEST_ARGS} -R api
#ctest ${CTEST_ARGS} || ctest ${CTEST_ARGS} --rerun-failed || ctest ${CTEST_ARGS} --rerun-failed
env:
CTEST_ARGS : "--output-on-failure --force-new-ctest-process -j4 --timeout 480"
if: matrix.RUN_TESTS == true && (matrix.run_in_pr == true || github.event_name != 'pull_request')
Expand Down