Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

github/workflows: adjust builds for new dockerfile #251

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions .github/workflows/build-image-on-pr-label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
S3GW_VERSION=${{ env.IMAGE_TAG }}
NPROC=16
QUAY_EXPIRATION=1w
SRC_S3GW_DIR=s3gw
tags: |
quay.io/s3gw/s3gw:${{ env.IMAGE_TAG }}
file: s3gw/Dockerfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-s3gw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
docker build \
--build-arg CMAKE_BUILD_TYPE=Debug \
--build-arg NPROC=16 \
--build-arg SRC_S3GW_DIR=s3gw \
--file s3gw/Dockerfile \
--tag s3gw:${IMAGE_TAG} \
.
Expand All @@ -88,8 +89,8 @@ jobs:
-p 7480:7480 \
-v $GITHUB_WORKSPACE/integration/storage:/data \
s3gw:${IMAGE_TAG} \
--rgw-backend-store sfs \
--debug-rgw 1 \
--debug low \
-- \
--rgw-lc-debug-interval 10)

wait_for_http_200 "http://127.0.0.1:7480"
Expand All @@ -113,8 +114,7 @@ jobs:
-p 7480:7480 \
-v $GITHUB_WORKSPACE/smoke/storage:/data \
s3gw:${IMAGE_TAG} \
--rgw-backend-store sfs \
--debug-rgw 1)
--debug low)

wait_for_http_200 "http://127.0.0.1:7480"

Expand Down
Loading