Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ jobs:

- name: install openstudio
run: |
wget http://openstudio-ci-builds.s3-website-us-west-2.amazonaws.com/PR-5149/OpenStudio-3.8.0-beta%2B2bc25028a3-Ubuntu-22.04-x86_64.deb
wget https://github.com/NREL/OpenStudio/releases/download/v3.9.0/OpenStudio-3.9.0+c77fbb9569-Ubuntu-22.04-x86_64.deb
sudo apt-get -qq install -y ./OpenStudio*.deb
rm -Rf ./OpenStudio*.deb

- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2' # Not needed with a .ruby-version file
bundler: '2.5.5'
bundler: '2.4.10'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically. We should NOT change the Bundler path, because to perform caching, this action will use bundle config --local path $PWD/vendor/bundle.
env:
RUBYLIB: /usr/local/openstudio-3.8.0/Ruby
RUBYLIB: /usr/local/openstudio-3.9.0/Ruby

- name: show enviroment
shell: bash
Expand Down Expand Up @@ -66,7 +66,6 @@ jobs:
ruby -e "require 'openstudio'; puts OpenStudio::openStudioLongVersion"
echo "::endgroup::"


- name: test
shell: bash
run: |
Expand Down
4 changes: 3 additions & 1 deletion openstudio-workflow.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ Gem::Specification.new do |s|
s.add_development_dependency 'ci_reporter', '~> 2.1.0'
s.add_development_dependency 'ci_reporter_rspec', '~> 1.0.0'
s.add_development_dependency 'coveralls', '~> 0.8.21'
s.add_development_dependency 'json-schema', '~> 2.8.0'
s.add_development_dependency 'json-schema', '~> 4'
s.add_development_dependency 'openstudio_measure_tester', '~> 0.4.0'
s.add_development_dependency 'parallel', '~> 1.19.1'
s.add_development_dependency 'public_suffix', '~> 4.0.3'
s.add_development_dependency 'rainbow', '~> 3.0.0'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.9'
s.add_development_dependency 'openstudio-standards', '~> 0.7.0'
s.add_development_dependency 'zip', '~> 2'
Comment on lines +29 to +37
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needed openstudio-standards for the tests that use measures that use it.

end
Loading