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

DBZ-8606 Enable build for platform-stage #426

Merged
merged 3 commits into from
Feb 4, 2025
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
3 changes: 2 additions & 1 deletion .github/workflows/image-builds-unauth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
component: [ 'mongo', 'postgres', 'debezium', 'tool', 'platform-conductor', 'operator']
component: ['postgres', 'debezium', 'tool']
runs-on: ubuntu-latest
env:
DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME: localhost:5500/debeziumquay
Expand All @@ -33,6 +33,7 @@ jobs:
if: matrix.component != 'tool'
env:
SKIP_UI: true
PLATFORM_STAGE_PLATFORM: linux/amd64
run: ./build-all-multiplatform.sh ${{ matrix.component }}
- name: Build Tool Images
if: matrix.component == 'tool'
Expand Down
2 changes: 1 addition & 1 deletion build-debezium-multiplatform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ build_docker_image connect
build_docker_image server
build_docker_image operator
build_docker_image platform-conductor
build_docker_image platform-stage
if [[ "$SKIP_UI" != "true" ]]; then
build_docker_image debezium-ui ui
build_docker_image platform-stage
fi
build_docker_image example-mysql examples/mysql
build_docker_image example-mysql-gtids examples/mysql-gtids
Expand Down
2 changes: 1 addition & 1 deletion build-debezium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ build_docker_image example-mongodb examples/mongodb
build_docker_image example-mysql-master examples/mysql-replication/master
build_docker_image example-mysql-replica examples/mysql-replication/replica
build_docker_image platform-conductor
build_docker_image platform-stage
build_docker_image operator
if [[ "$SKIP_UI" != "true" ]]; then
build_docker_image debezium-ui ui
build_docker_image platform-stage
fi

echo ""
Expand Down
2 changes: 1 addition & 1 deletion platform-stage/snapshot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN npm install -g yarn
WORKDIR /app
COPY --from=cloner /app/debezium-platform/debezium-platform-stage/package.json /app/
COPY --from=cloner /app/debezium-platform/debezium-platform-stage/yarn.lock /app/
RUN yarn install
RUN yarn install --network-timeout=600000

COPY --from=cloner /app/debezium-platform/debezium-platform-stage /app
RUN yarn build
Expand Down
Loading