backend.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. - 'dolphinscheduler-server/**'
  32. pull_request:
  33. concurrency:
  34. group: backend-${{ github.event.pull_request.number || github.ref }}
  35. cancel-in-progress: true
  36. jobs:
  37. build:
  38. name: Build
  39. runs-on: ubuntu-latest
  40. timeout-minutes: 30
  41. steps:
  42. - uses: actions/checkout@v2
  43. with:
  44. submodules: true
  45. - name: Sanity Check
  46. uses: ./.github/actions/sanity-check
  47. - uses: actions/cache@v2
  48. with:
  49. path: ~/.m2/repository
  50. key: ${{ runner.os }}-maven
  51. - name: Build and Package
  52. run: |
  53. ./mvnw -B clean install \
  54. -Prelease,docker \
  55. -Dmaven.test.skip=true \
  56. -Dcheckstyle.skip=true \
  57. -Dhttp.keepAlive=false \
  58. -Dmaven.wagon.http.pool=false \
  59. -Dmaven.wagon.httpconnectionManager.ttlSeconds=120
  60. - name: Check dependency license
  61. run: tools/dependencies/check-LICENSE.sh