backend.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. name: Backend
  18. on:
  19. push:
  20. branches:
  21. - dev
  22. paths:
  23. - '.github/workflows/backend.yml'
  24. - 'package.xml'
  25. - 'pom.xml'
  26. - 'dolphinscheduler-alert/**'
  27. - 'dolphinscheduler-api/**'
  28. - 'dolphinscheduler-common/**'
  29. - 'dolphinscheduler-dao/**'
  30. - 'dolphinscheduler-rpc/**'
  31. pull_request:
  32. concurrency:
  33. group: backend-${{ github.event.pull_request.number || github.ref }}
  34. cancel-in-progress: true
  35. jobs:
  36. paths-filter:
  37. name: Backend-Path-Filter
  38. runs-on: ubuntu-latest
  39. outputs:
  40. not-ignore: ${{ steps.filter.outputs.not-ignore }}
  41. db-schema: ${{ steps.filter.outputs.db-schema }}
  42. steps:
  43. - uses: actions/checkout@v2
  44. - uses: dorny/paths-filter@b2feaf19c27470162a626bd6fa8438ae5b263721
  45. id: filter
  46. with:
  47. filters: |
  48. not-ignore:
  49. - '!(docs/**)'
  50. db-schema:
  51. - 'dolphinscheduler-dao/src/main/resources/sql/**'
  52. build:
  53. name: Backend-Build
  54. needs: paths-filter
  55. if: ${{ (needs.paths-filter.outputs.not-ignore == 'true') || (github.event_name == 'push') }}
  56. runs-on: ubuntu-latest
  57. strategy:
  58. matrix:
  59. java: [ '8', '11' ]
  60. timeout-minutes: 30
  61. steps:
  62. - uses: actions/checkout@v2
  63. with:
  64. submodules: true
  65. - name: Set up JDK ${{ matrix.java }}
  66. uses: actions/setup-java@v2
  67. with:
  68. java-version: ${{ matrix.java }}
  69. distribution: 'adopt'
  70. - name: Sanity Check
  71. uses: ./.github/actions/sanity-check
  72. with:
  73. token: ${{ secrets.GITHUB_TOKEN }}
  74. - uses: actions/cache@v3
  75. with:
  76. path: ~/.m2/repository
  77. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-backend
  78. restore-keys: ${{ runner.os }}-maven-
  79. - name: Build and Package on ${{ matrix.java }}
  80. run: |
  81. ./mvnw -B clean install \
  82. -Prelease \
  83. -Dmaven.test.skip=true \
  84. -Dspotless.skip=true \
  85. -Dhttp.keepAlive=false \
  86. -Dmaven.wagon.http.pool=false \
  87. -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
  88. - name: Check dependency license
  89. run: tools/dependencies/check-LICENSE.sh
  90. - uses: actions/upload-artifact@v2
  91. if: ${{ matrix.java == '8' }}
  92. name: Upload Binary Package
  93. with:
  94. name: binary-package-${{ matrix.java }}
  95. path: ./dolphinscheduler-dist/target/apache-dolphinscheduler-*-SNAPSHOT-bin.tar.gz
  96. retention-days: 1
  97. cluster-test:
  98. name: ${{ matrix.case.name }}
  99. needs: build
  100. runs-on: ubuntu-latest
  101. timeout-minutes: 20
  102. strategy:
  103. matrix:
  104. case:
  105. - name: cluster-test-mysql
  106. script: .github/workflows/cluster-test/mysql/start-job.sh
  107. - name: cluster-test-postgresql
  108. script: .github/workflows/cluster-test/postgresql/start-job.sh
  109. steps:
  110. - uses: actions/checkout@v2
  111. with:
  112. submodules: true
  113. - uses: actions/download-artifact@v2
  114. name: Download Binary Package
  115. with:
  116. # Only run cluster test on jdk8
  117. name: binary-package-8
  118. path: ./
  119. - name: Running cluster test
  120. run: |
  121. /bin/bash ${{ matrix.case.script }}
  122. schema-check:
  123. runs-on: ubuntu-latest
  124. if: ${{ (needs.paths-filter.outputs.db-schema == 'true') || (github.event_name == 'push') }}
  125. timeout-minutes: 20
  126. needs: build
  127. services:
  128. mysql:
  129. image: mysql:5.7
  130. env:
  131. MYSQL_ROOT_PASSWORD: mysql
  132. MYSQL_DATABASE: dolphinscheduler_dev
  133. ports:
  134. - 3306:3306
  135. options: --name=mysql --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
  136. postgres:
  137. image: postgres:15
  138. env:
  139. POSTGRES_PASSWORD: postgres
  140. POSTGRES_DB: dolphinscheduler_dev
  141. ports:
  142. - 5432:5432
  143. options: --name=postgres --health-cmd=pg_isready --health-interval=10s --health-timeout=5s --health-retries=5
  144. strategy:
  145. fail-fast: false
  146. matrix:
  147. db: ["mysql", "postgresql"]
  148. version: ["2.0.9", "3.0.6", "3.1.9", "3.2.0"]
  149. steps:
  150. - name: Set up JDK 8
  151. uses: actions/setup-java@v2
  152. with:
  153. java-version: 8
  154. distribution: 'adopt'
  155. - name: Install Atlas and Create Dir
  156. run: |
  157. mkdir -p dolphinscheduler/dev dolphinscheduler/${{ matrix.version }}
  158. curl -sSf https://atlasgo.sh | sh
  159. - name: Download Tarball
  160. uses: actions/download-artifact@v2
  161. with:
  162. name: binary-package-8
  163. path: dolphinscheduler/dev
  164. - name: Set Env
  165. run: |
  166. VERSION=${{ matrix.version }}
  167. echo "DATABASE_VERSION=${VERSION//\./}" >> $GITHUB_ENV
  168. - name: Prepare
  169. run: |
  170. wget https://archive.apache.org/dist/dolphinscheduler/${{ matrix.version }}/apache-dolphinscheduler-${{ matrix.version }}-bin.tar.gz -P dolphinscheduler/${{ matrix.version }}
  171. tar -xzf dolphinscheduler/${{ matrix.version }}/apache-dolphinscheduler-${{ matrix.version }}-bin.tar.gz -C dolphinscheduler/${{ matrix.version }} --strip-components 1
  172. tar -xzf dolphinscheduler/dev/apache-dolphinscheduler-*-bin.tar.gz -C dolphinscheduler/dev --strip-components 1
  173. if [[ ${{ matrix.db }} == "mysql" ]]; then
  174. MYSQL_JDBC_URL="https://repo.maven.apache.org/maven2/mysql/mysql-connector-java/8.0.16/mysql-connector-java-8.0.16.jar"
  175. MYSQL_JDBC_JAR="mysql-connector-java-8.0.16.jar"
  176. wget ${MYSQL_JDBC_URL} -O /tmp/${MYSQL_JDBC_JAR}
  177. for base_dir in dolphinscheduler/dev dolphinscheduler/${{ matrix.version }}; do
  178. if [[ $base_dir == *"dolphinscheduler/2"* ]]; then
  179. cp /tmp/${MYSQL_JDBC_JAR} ${base_dir}/lib
  180. else
  181. for d in alert-server api-server master-server worker-server tools; do
  182. cp /tmp/${MYSQL_JDBC_JAR} ${base_dir}/${d}/libs
  183. done
  184. fi
  185. done
  186. docker exec -i mysql mysql -uroot -pmysql -e "create database dolphinscheduler_${{ env.DATABASE_VERSION }}";
  187. else
  188. docker exec -i postgres psql -U postgres -c "create database dolphinscheduler_${{ env.DATABASE_VERSION }};"
  189. fi
  190. - name: Check
  191. run: |
  192. if [[ $DATABASE_VERSION -lt 300 ]]; then
  193. chmod +x dolphinscheduler/dev/tools/bin/upgrade-schema.sh dolphinscheduler/${{ matrix.version }}/script/create-dolphinscheduler.sh
  194. else
  195. chmod +x dolphinscheduler/dev/tools/bin/upgrade-schema.sh dolphinscheduler/${{ matrix.version }}/tools/bin/upgrade-schema.sh
  196. fi
  197. if [[ ${{ matrix.db }} == "mysql" ]]; then
  198. export DATABASE="mysql"
  199. export SPRING_DATASOURCE_DRIVER_CLASS_NAME="com.mysql.cj.jdbc.Driver"
  200. export SPRING_DATASOURCE_URL="jdbc:mysql://127.0.0.1:3306/dolphinscheduler_dev?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false"
  201. export SPRING_DATASOURCE_USERNAME="root"
  202. export SPRING_DATASOURCE_PASSWORD="mysql"
  203. bash dolphinscheduler/dev/tools/bin/upgrade-schema.sh
  204. export SPRING_DATASOURCE_URL="jdbc:mysql://127.0.0.1:3306/dolphinscheduler_${{ env.DATABASE_VERSION }}?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false"
  205. if [[ $DATABASE_VERSION -lt 300 ]]; then
  206. bash dolphinscheduler/${{ matrix.version }}/script/create-dolphinscheduler.sh
  207. else
  208. bash dolphinscheduler/${{ matrix.version }}/tools/bin/upgrade-schema.sh
  209. fi
  210. bash dolphinscheduler/dev/tools/bin/upgrade-schema.sh
  211. atlas_result=$(atlas schema diff \
  212. --from "mysql://root:mysql@127.0.0.1:3306/dolphinscheduler_${{ env.DATABASE_VERSION }}" \
  213. --to "mysql://root:mysql@127.0.0.1:3306/dolphinscheduler_dev")
  214. if [[ ${atlas_result} != *"Schemas are synced"* ]]; then
  215. echo "================================================================================================"
  216. echo " !!!!! For Contributors !!!!!"
  217. echo "================================================================================================"
  218. echo "Database schema not sync, please add below change in the latest version of dolphinscheduler-dao/src/main/resources/sql/upgrade directory"
  219. echo "${atlas_result}"
  220. exit 1
  221. fi
  222. else
  223. export DATABASE="postgresql"
  224. export SPRING_DATASOURCE_DRIVER_CLASS_NAME="org.postgresql.Driver"
  225. export SPRING_DATASOURCE_URL="jdbc:postgresql://127.0.0.1:5432/dolphinscheduler_dev"
  226. export SPRING_DATASOURCE_USERNAME="postgres"
  227. export SPRING_DATASOURCE_PASSWORD="postgres"
  228. bash dolphinscheduler/dev/tools/bin/upgrade-schema.sh
  229. export SPRING_DATASOURCE_URL="jdbc:postgresql://127.0.0.1:5432/dolphinscheduler_${{ env.DATABASE_VERSION }}"
  230. if [[ $DATABASE_VERSION -lt 300 ]]; then
  231. bash dolphinscheduler/${{ matrix.version }}/script/create-dolphinscheduler.sh
  232. else
  233. bash dolphinscheduler/${{ matrix.version }}/tools/bin/upgrade-schema.sh
  234. fi
  235. bash dolphinscheduler/dev/tools/bin/upgrade-schema.sh
  236. atlas_result=$(atlas schema diff \
  237. --from "postgres://postgres:postgres@127.0.0.1:5432/dolphinscheduler_${{ env.DATABASE_VERSION }}?search_path=public&sslmode=disable" \
  238. --to "postgres://postgres:postgres@127.0.0.1:5432/dolphinscheduler_dev?search_path=public&sslmode=disable")
  239. if [[ ${atlas_result} != *"Schemas are synced"* ]]; then
  240. echo "================================================================================================"
  241. echo " !!!!! For Contributors !!!!!"
  242. echo "================================================================================================"
  243. echo "Database schema not sync, please add below change in the latest version in dolphinscheduler-dao/src/main/resources/sql/upgrade directory"
  244. echo "${atlas_result}"
  245. exit 1
  246. fi
  247. fi
  248. result:
  249. name: Build
  250. runs-on: ubuntu-latest
  251. timeout-minutes: 30
  252. needs: [ build, paths-filter, cluster-test, schema-check ]
  253. if: always()
  254. steps:
  255. - name: Status
  256. run: |
  257. if [[ ${{ needs.paths-filter.outputs.not-ignore }} == 'false' && ${{ needs.paths-filter.outputs.db-schema }} == 'false' && ${{ github.event_name }} == 'pull_request' ]]; then
  258. echo "Skip Build!"
  259. exit 0
  260. fi
  261. if [[ ${{ needs.build.result }} != 'success' || ${{ needs.cluster-test.result }} != 'success' ]]; then
  262. echo "Build Failed!"
  263. exit -1
  264. fi