Skip to content

Commit 0ac5131

Browse files
committed
Re-use Debezium distribution from the Build job
1 parent b75af1b commit 0ac5131

File tree

1 file changed

+25
-15
lines changed

1 file changed

+25
-15
lines changed

.github/workflows/cross-maven.yml

+25-15
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ jobs:
7070
run: ./server/mvnw clean install -f core/pom.xml -DskipTests -DskipITs -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
7171
- name: Maven build Debezium Server
7272
run: ./server/mvnw clean install -fae -f server/pom.xml -Passembly -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -DskipNonCore
73+
- name: Archive Debezium distribution
74+
uses: actions/upload-artifact@v4
75+
with:
76+
name: debezium-dist-artifact
77+
path: ./server/debezium-server-dist/target/debezium-server-dist*.tar.gz
7378

7479
validate-distribution:
7580
name: Verify debezium-server distribution
@@ -85,38 +90,43 @@ jobs:
8590
with:
8691
distribution: 'temurin'
8792
java-version: 21
88-
- name: Cache Maven packages
89-
uses: actions/cache@v4
90-
with:
91-
path: ~/.m2
92-
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
93-
restore-keys: ${{ runner.os }}-m2
9493
- name: Checkout Debezium Server repository
9594
uses: actions/checkout@v4
95+
with:
96+
path: server
97+
- name: Download Debezium distribution
98+
uses: actions/download-artifact@v4
99+
with:
100+
name: debezium-dist-artifact
101+
- name: Unzip Debezium distribution
102+
run: tar xf debezium-server-dist-*.tar.gz
96103
- name: Validate sink '${{matrix.sink}}'
97104
run: |
98105
# Creating the distribution archives
99-
DISTRIBUTION_FOLDER=./debezium-server-dist
106+
DISTRIBUTION_FOLDER=./debezium-server
100107
SINK=${{matrix.sink}}
101-
./mvnw clean package -DskipITs -DskipTests -Passembly
108+
CONFIG_FOLDER=./server/debezium-server-dist/src/test/resources/$SINK
109+
102110
# Start Up dependant services
103-
docker compose -f $DISTRIBUTION_FOLDER/src/test/resources/$SINK/docker-compose.yml up -d
111+
docker compose -f $CONFIG_FOLDER/docker-compose.yml up -d
112+
104113
# Copy configuration file
105-
mkdir $DISTRIBUTION_FOLDER/target/config
106-
cp $DISTRIBUTION_FOLDER/src/test/resources/$SINK/application.properties $DISTRIBUTION_FOLDER/target/config/application.properties
114+
cp $CONFIG_FOLDER/application.properties $DISTRIBUTION_FOLDER/config/application.properties
115+
107116
# Run debezium server at background
108-
chmod +x $DISTRIBUTION_FOLDER/target/classes/distro/run.sh
109-
docker run --name server-$SINK -d -v $DISTRIBUTION_FOLDER/target:/opt:z -p 8080:8080 --network debezium-backend -w /opt registry.access.redhat.com/ubi8/openjdk-21 /opt/classes/distro/run.sh
117+
docker run --name server-$SINK -d -v $DISTRIBUTION_FOLDER:/opt:z -p 8080:8080 --network debezium-backend -w /opt registry.access.redhat.com/ubi8/openjdk-21 ./run.sh
118+
119+
# Verify
110120
timeout 60 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/q/health)" != "200" ]]; do sleep 5; done' || false
111121
- name: Print logs
112122
if: failure()
113123
run: |
114124
echo "Logs from dependant services:"
115-
docker compose -f ./debezium-server-dist/src/test/resources/${{matrix.sink}}/docker-compose.yml logs
125+
docker compose -f ./server/debezium-server-dist/src/test/resources/${{matrix.sink}}/docker-compose.yml logs
116126
echo "Logs from Debezium server:"
117127
docker logs server-${{matrix.sink}}
118128
- name: Clean Up
119129
if: always()
120130
run: |
121131
docker rm -f server-${{matrix.sink}}
122-
docker compose -f ./debezium-server-dist/src/test/resources/${{matrix.sink}}/docker-compose.yml down
132+
docker compose -f ./server/debezium-server-dist/src/test/resources/${{matrix.sink}}/docker-compose.yml down

0 commit comments

Comments
 (0)