70
70
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
71
71
- name : Maven build Debezium Server
72
72
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
73
78
74
79
validate-distribution :
75
80
name : Verify debezium-server distribution
@@ -85,38 +90,43 @@ jobs:
85
90
with :
86
91
distribution : ' temurin'
87
92
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
94
93
- name : Checkout Debezium Server repository
95
94
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
96
103
- name : Validate sink '${{matrix.sink}}'
97
104
run : |
98
105
# Creating the distribution archives
99
- DISTRIBUTION_FOLDER=./debezium-server-dist
106
+ DISTRIBUTION_FOLDER=./debezium-server
100
107
SINK=${{matrix.sink}}
101
- ./mvnw clean package -DskipITs -DskipTests -Passembly
108
+ CONFIG_FOLDER=./server/debezium-server-dist/src/test/resources/$SINK
109
+
102
110
# 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
+
104
113
# 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
+
107
116
# 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
110
120
timeout 60 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' http://localhost:8080/q/health)" != "200" ]]; do sleep 5; done' || false
111
121
- name : Print logs
112
122
if : failure()
113
123
run : |
114
124
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
116
126
echo "Logs from Debezium server:"
117
127
docker logs server-${{matrix.sink}}
118
128
- name : Clean Up
119
129
if : always()
120
130
run : |
121
131
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