Skip to content

Commit

Permalink
refactor: standardize EFSS_PLATFORM_VERSION formatting across Docker …
Browse files Browse the repository at this point in the history
…scripts
  • Loading branch information
MahdiBaghbani committed Jan 22, 2025
1 parent 59ecb57 commit 84158b4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker/pull/ocm-test-suite/nextcloud.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ docker pull mariadb:11.4.2
docker pull cypress/included:13.13.1

# dev-stock images.
docker pull "pondersource/dev-stock-nextcloud:${EFSS_PLATFORM_VERSION}"
docker pull "pondersource/nextcloud:${EFSS_PLATFORM_VERSION}"
4 changes: 2 additions & 2 deletions docker/pull/ocm-test-suite/ocis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ set -e

# oCIS version:
# - 5.0.9
EFSS_PLATFORM_VERSION=${1:-"5.0.9"}
EFSS_PLATFORM_VERSION=${1:-"V5.0.9"}

# 3rd party images.
docker pull cypress/included:13.13.1

# images.
docker pull "owncloud/ocis:${EFSS_PLATFORM_VERSION}"
docker pull "owncloud/ocis:${EFSS_PLATFORM_VERSION#v}"
4 changes: 2 additions & 2 deletions docker/pull/ocm-test-suite/ocmstub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# nextcloud version:
# - v27.1.11
# - v28.0.14
EFSS_PLATFORM_VERSION=${1:-"1.0"}
EFSS_PLATFORM_VERSION=${1:-"V1.0.0"}

# dev-stock images.
docker pull "pondersource/dev-stock-ocmstub:${EFSS_PLATFORM_VERSION}"
docker pull "pondersource/ocmstub:${EFSS_PLATFORM_VERSION}"
6 changes: 5 additions & 1 deletion docker/pull/ocm-test-suite/owncloud.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
# @michielbdejong halt on error in docker init scripts.
set -e

# owncloud version:
# - 10.15.0
EFSS_PLATFORM_VERSION=${1:-"v10.15.0"}

# 3rd party images.
docker pull mariadb:11.4.2
docker pull cypress/included:13.13.1

# dev-stock images.
docker pull pondersource/dev-stock-owncloud-ocm-test-suite:latest
docker pull "pondersource/owncloud:${EFSS_PLATFORM_VERSION}"
4 changes: 2 additions & 2 deletions docker/pull/ocm-test-suite/seafile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ set -e
# - 9.0.10
# - 10.0.1
# - 11.0.5
EFSS_PLATFORM_VERSION=${1:-"11.0.5"}
EFSS_PLATFORM_VERSION=${1:-"v11.0.5"}

# 3rd party images.
docker pull mariadb:11.4.2
docker pull memcached:1.6.18
docker pull cypress/included:13.13.1
docker pull "seafileltd/seafile-mc:${EFSS_PLATFORM_VERSION}"
docker pull "seafileltd/seafile-mc:${EFSS_PLATFORM_VERSION#v}"

0 comments on commit 84158b4

Please sign in to comment.