Skip to content

Commit e40eed7

Browse files
authored
Merge pull request #625 from fog/fix-rubyversion
Fix 'Ostruct' errors in storage tests
2 parents ecc9b2d + 3a02429 commit e40eed7

10 files changed

+11
-9
lines changed

.github/workflows/integration-compute-core.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# is no need to run them if SQL code or deps haven't changed and you cannot
33
# trigger jobs based on file changes in the same workflow.
44
# See: https://github.com/actions/runner/issues/456
5-
name: integration-tests-compute-instance_groups
5+
name: integration-tests-compute-core
66

77
on:
88
push:
99
branches: [ master ]
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/compute/**'

.github/workflows/integration-compute-instance_groups.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/compute/**'

.github/workflows/integration-compute-loadbalancing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/compute/**'

.github/workflows/integration-compute-networking.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/compute/**'

.github/workflows/integration-monitoring.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/google/monitoring.rb'

.github/workflows/integration-pubsub.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/google/pubsub.rb'

.github/workflows/integration-sql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/google/sql.rb'

.github/workflows/integration-storage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
pull_request:
1111
branches: [ master ]
1212
types: [ assigned, opened, synchronize, reopened, labeled ]
13-
# Only run SQL integration tests if SQL code or deps have changed
13+
# Only run integration tests if relevant code or deps have changed
1414
paths:
1515
# Module-specific paths
1616
- 'lib/fog/google/storage.rb'

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.2.2

test/integration/storage/test_objects.rb

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
require "base64"
55
require "tempfile"
66
require "net/http"
7+
require "ostruct"
78

89
class TestStorageRequests < StorageShared
910
def test_put_object_string

0 commit comments

Comments
 (0)