py-ci.yml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. # Licensed to the Apache Software Foundation (ASF) under one or more
  2. # contributor license agreements. See the NOTICE file distributed with
  3. # this work for additional information regarding copyright ownership.
  4. # The ASF licenses this file to You under the Apache License, Version 2.0
  5. # (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. name: Python API
  16. on:
  17. push:
  18. branches:
  19. - dev
  20. paths:
  21. - 'dolphinscheduler-python/**'
  22. pull_request:
  23. paths:
  24. - 'dolphinscheduler-python/**'
  25. concurrency:
  26. group: py-${{ github.event.pull_request.number || github.ref }}
  27. cancel-in-progress: true
  28. defaults:
  29. run:
  30. working-directory: dolphinscheduler-python/pydolphinscheduler
  31. # We have to update setuptools wheel to package with package_data, LICENSE, NOTICE
  32. env:
  33. DEPENDENCES: pip setuptools wheel tox
  34. jobs:
  35. lint:
  36. name: Lint
  37. timeout-minutes: 15
  38. runs-on: ubuntu-latest
  39. steps:
  40. - uses: actions/checkout@v2
  41. - name: Set up Python 3.7
  42. uses: actions/setup-python@v2
  43. with:
  44. python-version: 3.7
  45. - name: Install Dependences
  46. run: |
  47. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  48. - name: Run All Lint Check
  49. run: |
  50. python -m tox -vv -e lint
  51. pytest:
  52. name: Pytest
  53. timeout-minutes: 15
  54. needs: lint
  55. runs-on: ${{ matrix.os }}
  56. strategy:
  57. fail-fast: false
  58. matrix:
  59. python-version: [3.6, 3.7, 3.8, 3.9]
  60. os: [ubuntu-18.04, macOS-latest, windows-latest]
  61. steps:
  62. - uses: actions/checkout@v2
  63. - name: Set up Python ${{ matrix.python-version }}
  64. uses: actions/setup-python@v2
  65. with:
  66. python-version: ${{ matrix.python-version }}
  67. - name: Install Dependences
  68. run: |
  69. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  70. - name: Run All Tests
  71. run: |
  72. python -m tox -vv -e code-test
  73. doc-build:
  74. name: Docs Build Test
  75. timeout-minutes: 15
  76. needs: lint
  77. runs-on: ubuntu-latest
  78. steps:
  79. - uses: actions/checkout@v2
  80. - name: Set up Python 3.7
  81. uses: actions/setup-python@v2
  82. with:
  83. python-version: 3.7
  84. - name: Install Dependences
  85. run: |
  86. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  87. - name: Run Tests Build Docs
  88. run: |
  89. python -m tox -vv -e doc-build-test
  90. local-ci:
  91. name: Local CI
  92. timeout-minutes: 15
  93. needs:
  94. - pytest
  95. - doc-build
  96. runs-on: ubuntu-latest
  97. steps:
  98. - uses: actions/checkout@v2
  99. - name: Set up Python 3.7
  100. uses: actions/setup-python@v2
  101. with:
  102. python-version: 3.7
  103. - name: Install Dependences
  104. run: |
  105. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  106. - name: Run Tests Build Docs
  107. run: |
  108. python -m tox -vv -e local-ci
  109. build-image:
  110. name: Build Image
  111. runs-on: ubuntu-latest
  112. # Switch to project root directory to run mvnw command
  113. defaults:
  114. run:
  115. working-directory: ./
  116. timeout-minutes: 20
  117. steps:
  118. - uses: actions/checkout@v2
  119. with:
  120. submodules: true
  121. - name: Sanity Check
  122. uses: ./.github/actions/sanity-check
  123. with:
  124. token: ${{ secrets.GITHUB_TOKEN }}
  125. - name: Cache local Maven repository
  126. uses: actions/cache@v3
  127. with:
  128. path: ~/.m2/repository
  129. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  130. restore-keys: ${{ runner.os }}-maven-
  131. - name: Build Image
  132. run: |
  133. ./mvnw -B clean install \
  134. -Dmaven.test.skip \
  135. -Dmaven.javadoc.skip \
  136. -Dcheckstyle.skip=true \
  137. -Pdocker,release -Ddocker.tag=ci \
  138. -pl dolphinscheduler-standalone-server -am
  139. - name: Export Docker Images
  140. run: |
  141. docker save apache/dolphinscheduler-standalone-server:ci -o /tmp/standalone-image.tar \
  142. && du -sh /tmp/standalone-image.tar
  143. - uses: actions/upload-artifact@v2
  144. name: Upload Docker Images
  145. with:
  146. name: standalone-image
  147. path: /tmp/standalone-image.tar
  148. retention-days: 1
  149. integrate-test:
  150. name: Integrate Test
  151. timeout-minutes: 20
  152. needs:
  153. - build-image
  154. runs-on: ubuntu-latest
  155. steps:
  156. - uses: actions/checkout@v2
  157. - uses: actions/download-artifact@v2
  158. name: Download Docker Images
  159. with:
  160. name: standalone-image
  161. path: /tmp
  162. - name: Load Docker Images
  163. run: |
  164. docker load -i /tmp/standalone-image.tar
  165. - name: Set up Python 3.7
  166. uses: actions/setup-python@v2
  167. with:
  168. python-version: 3.7
  169. - name: Install Dependences
  170. run: |
  171. python -m pip install --upgrade ${{ env.DEPENDENCES }}
  172. - name: Run Tests Build Docs
  173. run: |
  174. python -m tox -vv -e integrate-test