Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[full-ci] ci: bump ocis version to 7 #11955

Open
wants to merge 3 commits into
base: 5
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OC_CI_DRONE_SKIP_PIPELINE = "owncloudci/drone-skip-pipeline"
OC_CI_NODEJS = "owncloudci/nodejs:16"
OC_CI_PHP = "owncloudci/php:%s"
OC_CI_WAIT_FOR = "owncloudci/wait-for:latest"
OC_OCIS = "owncloud/ocis:%s"
OC_OCIS = "owncloud/ocis-rolling:%s"
Copy link
Member Author

Choose a reason for hiding this comment

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

Suggested change
OC_OCIS = "owncloud/ocis-rolling:%s"
OC_OCIS = "owncloud/ocis:%s"

OC_TEST_MIDDLEWARE = "owncloud/owncloud-test-middleware:1.8.7"
OC_UBUNTU = "owncloud/ubuntu:20.04"

Expand Down Expand Up @@ -93,7 +93,7 @@ config = {
"skip": False,
},
"ocis": {
"version": "5.0.0",
"version": "6.6.0",
Copy link
Member Author

Choose a reason for hiding this comment

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

I think, it's better to use the production version. So, I will wait till we get the production version tag

Suggested change
"version": "6.6.0",
"version": "7.0.0",

# comma separated list of tags to be used for filtering. E.g. "@tag1,@tag2"
"tags": "~@skipOnOCIS",
"skip": False,
Expand Down
2 changes: 1 addition & 1 deletion test/gui/shared/scripts/helpers/SpaceHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_share_endpint():


def create_space(space_name):
body = json.dumps({"Name": space_name})
body = json.dumps({"name": space_name})
response = request.post(get_space_endpint(), body)
if response.status_code != 201:
raise Exception(
Expand Down
Loading