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

[backport 4.1.z] don't use hazelcas-all in docker snaphost images #19199

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/docker_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ jobs:
- name: Build hazelcast with Maven
run: |
mvn -f hazelcast/pom.xml -B clean install -DskipTests
rm hazelcast/hazelcast-all/target/*-sources.jar
cp hazelcast/hazelcast-all/target/hazelcast-all-*.jar hazelcast-all.jar
rm hazelcast/hazelcast/target/*-sources.jar \
hazelcast/hazelcast/target/*-tests.jar || true
cp hazelcast/hazelcast/target/hazelcast-*.jar hazelcast.jar

- name: Docker Build and Push hazelcast-snapshot image
run: |
Expand All @@ -65,8 +66,9 @@ jobs:
- name: Build hazelcast-enterprise with Maven
run: |
mvn -f hazelcast-enterprise/pom.xml -B clean install -DskipTests
rm hazelcast-enterprise/hazelcast-enterprise-all/target/*-tests.jar
cp hazelcast-enterprise/hazelcast-enterprise-all/target/hazelcast-enterprise-all-*.jar hazelcast-enterprise-all.jar
rm hazelcast-enterprise/hazelcast-enterprise/target/*-sources.jar \
hazelcast-enterprise/hazelcast-enterprise/target/*-tests.jar || true
cp hazelcast-enterprise/hazelcast-enterprise/target/hazelcast-enterprise-*.jar hazelcast-enterprise.jar

- name: Docker Build and Push hazelcast-enterprise-snapshot image
run: |
Expand Down