Skip to content

Commit

Permalink
Disable regressions on u24, solely mac now, and skip the longest runn…
Browse files Browse the repository at this point in the history
…ing debug integration tests
  • Loading branch information
Myoldmopar committed Aug 29, 2024
1 parent 19f1c52 commit d409326
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
python-arch: x64
generator: "Unix Makefiles"
nproc: 4
run_regressions: true
run_regressions: false
- os: windows-2022
arch: x86_64
python-arch: x64
Expand Down
27 changes: 26 additions & 1 deletion .github/workflows/debug_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,29 @@ jobs:

- name: Run Integration Tests
working-directory: ./build
run: ctest -R "integration.*" -j 4
# skipping several here because they take a hideously long time in debug builds, would love to clean them up:
# integration.UnitaryHybridAC_DedicatedOutsideAir # 952 seconds
# integration.DirectIndirectEvapCoolersVSAS # 847 seconds
# integration.HospitalBaselineReheatReportEMS # 705 seconds
# integration.ASHRAE901_ApartmentHighRise_STD2019_Denver # 614 seconds
# integration.HospitalBaseline # 610 seconds
# integration.RefBldgOutPatientNew2004_Chicago # 586 seconds
# integration.UnitarySystem_MultiSpeedDX_EconoStaging # 536 seconds
# integration.RefrigeratedWarehouse # 445 seconds
# integration.RefBldgSecondarySchoolNew2004_Chicago # 378 seconds
# integration.ASHRAE901_OutPatientHealthCare_STD2019_Denver # 373 seconds
# after this, there is a big drop and everything is less than 5 minutes.
run: >
ctest
-R "integration.*"
-E "*UnitaryHybridAC_DedicatedOutsideAir*"
-E "*DirectIndirectEvapCoolersVSAS*"
-E "*HospitalBaselineReheatReportEMS*"
-E "*ASHRAE901_ApartmentHighRise_STD2019_Denver*"
-E "*HospitalBaseline*"
-E "*RefBldgOutPatientNew2004_Chicago*"
-E "*UnitarySystem_MultiSpeedDX_EconoStaging*"
-E "*RefrigeratedWarehouse*"
-E "*RefBldgSecondarySchoolNew2004_Chicago*"
-E "*ASHRAE901_OutPatientHealthCare_STD2019_Denver*"
-j 4

0 comments on commit d409326

Please sign in to comment.