openstudio-calibration 0.12.2 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test-with-openstudio.yml +7 -5
- data/CHANGELOG.md +4 -0
- data/README.md +1 -0
- data/lib/openstudio/calibration/version.rb +1 -1
- data/openstudio-calibration.gemspec +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3933e605e1040984a6a2b99c8a110eed28d63801d201dedd10b3d135d6ce4ef
|
|
4
|
+
data.tar.gz: 99af620d4dcc12a6f8f91a00ee1e0a22dade603acdb101d6bec8d446f4784bd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef22a2157ab6d7fea030afa82c288805c0045fb9d425ea24d96ecf69f5b0fcb6f3ddcfcbf760354ee3f7a52e8fee540127d81ed16e3aed3b0b7ebedc890e1ed6
|
|
7
|
+
data.tar.gz: fcf9b38f02c83459c821c1af5be22dea5e4e434ff59a2c93a1ad45df8c94eafe7763df0c2e9d939520991eea96a4b9f88aa0a4bc1396ac796878b9770f084945
|
|
@@ -12,12 +12,12 @@ jobs:
|
|
|
12
12
|
S3_BUCKET: ext-gem-dashboard
|
|
13
13
|
|
|
14
14
|
container: # Define the Docker container for the job. All subsequent steps run inside it.
|
|
15
|
-
image: nrel/openstudio:3.
|
|
15
|
+
image: nrel/openstudio:dev-3.11.0-rc3
|
|
16
16
|
options: -u root -e "LANG=en_US.UTF-8" # These options are passed to the 'docker run' command internally
|
|
17
17
|
|
|
18
18
|
steps:
|
|
19
19
|
- name: Checkout Repository
|
|
20
|
-
# The repository will be checked out inside the 'nrel/openstudio:3.
|
|
20
|
+
# The repository will be checked out inside the 'nrel/openstudio:3.11.0' container
|
|
21
21
|
uses: actions/checkout@v4 # Use v4 for better security and features
|
|
22
22
|
with:
|
|
23
23
|
submodules: true # Set to true if your repository uses Git submodules
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
apt-get install -y nodejs
|
|
40
40
|
|
|
41
41
|
# Install AWS CLI v2
|
|
42
|
-
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
|
|
42
|
+
curl --retry 5 --retry-connrefused "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
|
|
43
43
|
unzip awscliv2.zip
|
|
44
44
|
./aws/install
|
|
45
45
|
|
|
@@ -56,7 +56,6 @@ jobs:
|
|
|
56
56
|
shell: bash # Specify the shell if needed, though bash is default for Ubuntu runners
|
|
57
57
|
run: |
|
|
58
58
|
# Fix git ownership issue in container
|
|
59
|
-
git config --global --add safe.directory /__w/openstudio-load-flexibility-measures-gem/openstudio-load-flexibility-measures-gem
|
|
60
59
|
|
|
61
60
|
echo "OpenStudio Version: $(openstudio --version)"
|
|
62
61
|
echo "Ruby Version: $(ruby -v)"
|
|
@@ -79,14 +78,16 @@ jobs:
|
|
|
79
78
|
ls -al ./test # Verify the output directory exists and contains files
|
|
80
79
|
|
|
81
80
|
- name: Configure AWS Credentials
|
|
81
|
+
if: success() || failure()
|
|
82
82
|
# This step is crucial for authenticating with AWS S3
|
|
83
83
|
uses: aws-actions/configure-aws-credentials@v4 # Use v4 for updated features
|
|
84
84
|
with:
|
|
85
85
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
86
86
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} # Assuming this is your secret name
|
|
87
|
-
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} # Replace with your AWS region, e.g., us-
|
|
87
|
+
aws-region: ${{ secrets.AWS_DEFAULT_REGION }} # Replace with your AWS region, e.g., us-east-1
|
|
88
88
|
|
|
89
89
|
- name: Sync files to S3 with branch and build in path
|
|
90
|
+
if: success() || failure()
|
|
90
91
|
shell: bash
|
|
91
92
|
run: |
|
|
92
93
|
echo "Deploying to s3://${{ env.S3_BUCKET }}/${{ env.DEPLOY_PATH }}/"
|
|
@@ -102,6 +103,7 @@ jobs:
|
|
|
102
103
|
echo dir_name=$dir_name >> $GITHUB_ENV # Save the directory name to an environment variable for later use
|
|
103
104
|
|
|
104
105
|
- name: Archive static site as artifact
|
|
106
|
+
if: always()
|
|
105
107
|
uses: actions/upload-artifact@v4
|
|
106
108
|
with:
|
|
107
109
|
name: static-html-artifact
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -30,8 +30,8 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.required_ruby_version = '~> 3.2.2'
|
|
31
31
|
|
|
32
32
|
spec.add_dependency 'bundler', '~> 2.4.10'
|
|
33
|
-
spec.add_dependency 'openstudio-extension', '~> 0.9.
|
|
34
|
-
spec.add_dependency 'openstudio-standards', '0.8.
|
|
33
|
+
spec.add_dependency 'openstudio-extension', '~> 0.9.7'
|
|
34
|
+
spec.add_dependency 'openstudio-standards', '0.8.5'
|
|
35
35
|
|
|
36
36
|
# if we need the following dependencies pinned,
|
|
37
37
|
# let's set them in extension-gem for next release
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: openstudio-calibration
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Ball
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2026-06-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -31,28 +31,28 @@ dependencies:
|
|
|
31
31
|
requirements:
|
|
32
32
|
- - "~>"
|
|
33
33
|
- !ruby/object:Gem::Version
|
|
34
|
-
version: 0.9.
|
|
34
|
+
version: 0.9.7
|
|
35
35
|
type: :runtime
|
|
36
36
|
prerelease: false
|
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
38
38
|
requirements:
|
|
39
39
|
- - "~>"
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 0.9.
|
|
41
|
+
version: 0.9.7
|
|
42
42
|
- !ruby/object:Gem::Dependency
|
|
43
43
|
name: openstudio-standards
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
46
|
- - '='
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version: 0.8.
|
|
48
|
+
version: 0.8.5
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
53
|
- - '='
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version: 0.8.
|
|
55
|
+
version: 0.8.5
|
|
56
56
|
- !ruby/object:Gem::Dependency
|
|
57
57
|
name: multipart-post
|
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -379,7 +379,7 @@ licenses: []
|
|
|
379
379
|
metadata:
|
|
380
380
|
bug_tracker_uri: https://github.com/NREL/openstudio-calibration-gem/issues
|
|
381
381
|
changelog_uri: https://github.com/NREL/openstudio-calibration-gem/blob/develop/CHANGELOG.md
|
|
382
|
-
source_code_uri: https://github.com/NREL/openstudio-calibration-gem/tree/v0.
|
|
382
|
+
source_code_uri: https://github.com/NREL/openstudio-calibration-gem/tree/v0.13.0
|
|
383
383
|
post_install_message:
|
|
384
384
|
rdoc_options: []
|
|
385
385
|
require_paths:
|