v1.7.2 patch to not automatically download results measure #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check OSM Versions | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
osm-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Verify that OSMs have been updated | |
shell: bash | |
run: | | |
ruby ./developer/ruby/CheckOSMVersions.rb | |
- name: Suggest correcting steps | |
if: ${{ failure() }} | |
shell: bash | |
run: | | |
echo "There is a workflow called export_standards_data that you should run first (it's a manual workflow_dispatch workflow)" | |
echo "or run it locally via 'cd developper/ruby && openstudio export_openstudio_standards_libraries.rb'" | |
echo "" | |
echo "Then you should use 'openstudio developper/ruby/UpdateOSMVersions.rb' to version translate the rest of the OSM files." |