Browse Source

Disable CI test step in windows debug

pull/1893/head
Jelle 5 months ago committed by GitHub
parent
commit
77880861a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/main.yml

2
.github/workflows/main.yml

@ -78,6 +78,8 @@ jobs:
run: build/build.sh -platform $PLATFORM -build_only -configuration $BUILD_CONFIGURATION run: build/build.sh -platform $PLATFORM -build_only -configuration $BUILD_CONFIGURATION
- name: Test (.NET) - name: Test (.NET)
# Disable test for debug configs, since they take over 6 hours to complete
if: matrix.build-cfg != 'Debug'
shell: bash shell: bash
run: build/test.sh -platform $PLATFORM -configuration $BUILD_CONFIGURATION run: build/test.sh -platform $PLATFORM -configuration $BUILD_CONFIGURATION

Loading…
Cancel
Save