Skip to content

Commit c6b92c0

Browse files
committed
Fix workflow
1 parent eb2790e commit c6b92c0

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/object-storage-adapter-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ env:
5151
jobs:
5252
integration-test-s3:
5353
name: S3 integration test (${{ matrix.test_group.label }})
54-
runs-on: ubuntu-latest
54+
runs-on: [self-hosted, linux]
5555

5656
strategy:
5757
fail-fast: false
@@ -82,7 +82,7 @@ jobs:
8282
bucket_suffix: storage-cm
8383
group_commit_enabled: false
8484
- label: storage_others
85-
tests_filter: '--tests "**.ObjectStorage**" --tests "*!ObjectStorageSingle" --tests "*!ObjectStorageMultiple" --tests "*!ObjectStorageWrapper" --tests "*!ObjectStorageAdmin" --tests "*!ObjectStorageConditionalMutation"'
85+
tests_filter: '--tests "**.ObjectStorage**" --tests "!**.ObjectStorageSingle**" --tests "!**.ObjectStorageMultiple**" --tests "!**.ObjectStorageWrapper**" --tests "!**.ObjectStorageAdmin**" --tests "!**.ObjectStorageConditionalMutation**"'
8686
bucket_suffix: storage
8787
group_commit_enabled: false
8888
- label: two_phase_consensus_commit
@@ -161,7 +161,7 @@ jobs:
161161
bucket_suffix: storage-cm
162162
group_commit_enabled: false
163163
- label: storage_others
164-
tests_filter: '--tests "**.ObjectStorage**" --tests "*!ObjectStorageSingle" --tests "*!ObjectStorageMultiple" --tests "*!ObjectStorageWrapper" --tests "*!ObjectStorageAdmin" --tests "*!ObjectStorageConditionalMutation"'
164+
tests_filter: '--tests "**.ObjectStorage**" --tests "!**.ObjectStorageSingle**" --tests "!**.ObjectStorageMultiple**" --tests "!**.ObjectStorageWrapper**" --tests "!**.ObjectStorageAdmin**" --tests "!**.ObjectStorageConditionalMutation**"'
165165
bucket_suffix: storage
166166
group_commit_enabled: false
167167
- label: single_crud_operation_transaction

core/src/integration-test/java/com/scalar/db/storage/objectstorage/ObjectStorageConditionalMutationIntegrationTest.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@
88
public class ObjectStorageConditionalMutationIntegrationTest
99
extends DistributedStorageConditionalMutationIntegrationTestBase {
1010

11-
@Override
12-
protected int getThreadNum() {
13-
return 3;
14-
}
15-
1611
@Override
1712
protected Properties getProperties(String testName) {
1813
return ObjectStorageEnv.getProperties(testName);

0 commit comments

Comments
 (0)