You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
5.3 KiB

  1. # Copyright 2020 IT Projects Labs
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. name: "Port module"
  15. on:
  16. issues:
  17. types:
  18. - opened
  19. - reopened
  20. jobs:
  21. port:
  22. runs-on: ubuntu-latest
  23. if: "startsWith(github.event.issue.title, 'DINAR-PORT ')"
  24. steps:
  25. - name: Post link
  26. uses: KeisukeYamashita/create-comment@v1
  27. with:
  28. comment:
  29. "Porting is started. Check logs: https://github.com/${{ github.repository
  30. }}/actions/runs/${{ github.run_id }}"
  31. - name: Checkout DINAR
  32. uses: actions/checkout@v2
  33. with:
  34. path: DINAR
  35. repository: itpp-labs/DINAR-fork
  36. ref: master
  37. - uses: actions/setup-python@v2
  38. with:
  39. python-version: "3.7.x"
  40. - name: Install python tools
  41. run: |
  42. pip install plumbum pre-commit git-aggregator
  43. - name: Check Python Version
  44. run:
  45. echo "PY=$(python --version --version | sha256sum | cut -d' ' -f1)" >>
  46. $GITHUB_ENV
  47. - name: Analyze request
  48. run: |
  49. # sets environment variables that available in next steps via $ {{ env.PORT_... }} notation
  50. python DINAR/workflow-files/analyze_port_trigger.py "${{ github.event.issue.title }}"
  51. - name: Checkout Repo
  52. uses: actions/checkout@v2
  53. with:
  54. path: REPO
  55. fetch-depth: 0
  56. ref: ${{ env.PORT_TO_BRANCH }}
  57. - uses: actions/cache@v1
  58. with:
  59. path: ~/.cache/pre-commit
  60. key: pre-commit|${{ env.PY }}|${{ hashFiles('REPO/.pre-commit-config.yaml') }}
  61. - name: Copy module to new branch
  62. run: |
  63. git config --global user.email "itpp-bot@users.noreply.github.com"
  64. git config --global user.name "Mitchell Admin"
  65. cd REPO
  66. if [ ! -d ${{ env.PORT_MODULE }} ]
  67. then
  68. # apply original commit history
  69. if ! git format-patch --keep-subject --stdout origin/${{ env.PORT_TO_BRANCH }}..origin/${{ env.PORT_FROM_BRANCH }} -- ${{ env.PORT_MODULE }} | git am -3 --keep
  70. then
  71. # git am failed
  72. git am --abort
  73. # just copy source
  74. git checkout origin/${{ env.PORT_FROM_BRANCH }} -- ${{ env.PORT_MODULE }}
  75. git commit -m ":tada:${{ env.PORT_FROM_BRANCH_TAGS }} ${{ env.PORT_MODULE }}
  76. previous commits history: https://github.com/${{ github.repository }}/commits/${{ env.PORT_FROM_BRANCH }}/ir_rule_protected
  77. > Made via .github/workflows/DINAR-PORT.yml"
  78. fi
  79. fi
  80. - name: make OCA/odoo-module-migrator
  81. run: |
  82. gitaggregate -c DINAR/workflow-files/odoo-module-migrator-mix.yml
  83. pip install -e ./odoo-module-migrator
  84. - name: apply OCA/odoo-module-migrator
  85. run: |
  86. LOG_FILE=../odoo-module-migrator.logs
  87. cd REPO
  88. odoo-module-migrate \
  89. --modules ${{ env.PORT_MODULE }} \
  90. --init-version-name ${{ env.PORT_FROM_BRANCH }} \
  91. --target-version-name ${{ env.PORT_TO_BRANCH }} \
  92. --no-commit \
  93. 2> $LOG_FILE || true
  94. cat $LOG_FILE
  95. # remove colors
  96. sed -r -i "s/\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g" $LOG_FILE
  97. # escape character
  98. # TODO: update KeisukeYamashita/create-comment to support reading comment's body from file
  99. body=$(cat $LOG_FILE)
  100. body="${body//'%'/'%25'}"
  101. body="${body//$'\n'/'%0A'}"
  102. body="${body//$'\r'/'%0D'}"
  103. echo "MIGRATOR_LOGS=$body" >> $GITHUB_ENV
  104. git add -A
  105. git commit -m ":arrow_up:${{ env.PORT_TO_BRANCH_TAGS }} OCA/odoo-module-migrator
  106. close #${{ github.event.issue.number }}
  107. > Made via .github/workflows/DINAR-PORT.yml"
  108. - name: pre-commit
  109. run: |
  110. cd REPO
  111. pre-commit run --files $(find ${{ env.PORT_MODULE }} -type f) || true
  112. git add -A
  113. git commit -m ":rainbow: pre-commit
  114. > Made via .github/workflows/DINAR-PORT.yml" || echo "pre-commit: no changes"
  115. - name: PR
  116. uses: peter-evans/create-pull-request@v3
  117. id: cpr
  118. with:
  119. path: REPO
  120. # GITHUB_TOKEN would not trigger PR checks
  121. token: ${{ secrets.DINAR_TOKEN }}
  122. branch: ${{ env.PORT_TO_BRANCH }}-${{ env.PORT_MODULE }}
  123. title: "[${{ env.PORT_TO_BRANCH }}] ${{ env.PORT_MODULE }}"
  124. body: |
  125. Made by [DINAR](https://github.com/itpp-labs/DINAR#readme) by request in #${{ github.event.issue.number }}
  126. - name: Post logs
  127. uses: KeisukeYamashita/create-comment@v1
  128. with:
  129. number: ${{ steps.cpr.outputs.pull-request-number }}
  130. comment: |
  131. [Migrator](https://github.com/OCA/odoo-module-migrator/)'s logs:
  132. ```
  133. ${{ env.MIGRATOR_LOGS }}
  134. ```