1. 06 3月, 2023 1 次提交
  2. 05 3月, 2023 1 次提交
  3. 03 3月, 2023 2 次提交
  4. 28 2月, 2023 6 次提交
  5. 26 2月, 2023 1 次提交
  6. 24 2月, 2023 2 次提交
  7. 23 2月, 2023 3 次提交
  8. 22 2月, 2023 2 次提交
  9. 21 2月, 2023 2 次提交
  10. 20 2月, 2023 3 次提交
  11. 19 2月, 2023 2 次提交
  12. 17 2月, 2023 1 次提交
  13. 16 2月, 2023 2 次提交
  14. 15 2月, 2023 1 次提交
  15. 14 2月, 2023 3 次提交
    • K
      Bump up Java version to 11 and use junit tag to group IT and slow IT (#10390) · 49594c4d
      kezhenxu94 提交于
      - `./mvnw test ...` by its nature only runs unit tests, whose name is pattern of `*Test`, and it does never runs integration tests, whose name is patter of `IT*` or `*IT`, so in this PR we use `./mvnw clean test ...` to only run unit tests.
      - `./mvnw integration-test ...` will run integration tests and unit tests, so we have `skipUTs` to control whether to skip the UT when running ITs, we already had this before.
        - As for ITs, we have two groups, one is normal tests without any `@Tag`s, the other one is slow integration tests, which is annotated with `@Tag("slow")`, so we divided the integration tests into two workflow jobs:
        - `./mvnw -DskipUTs=true clean integration-test -DexcludedGroups=slow ...` run the ITs but don't run the slow ITs and UTs, `-DexcludedGroups=slow` excludes tests annotated with `@Tag("slow")`
        - `./mvnw -DskipUTs=true clean integration-test -Dcheckstyle.skip -Dtest=${{ matrix.test.class }}` run the slow ITs (because `excludedGroups` is not set) one case at a time, by setting `-Dtest={{ class }}`, not run UTs,
      49594c4d
    • wu-sheng's avatar
      Sync UI (#10389) · dbf4e864
      wu-sheng 提交于
      dbf4e864
    • wu-sheng's avatar
      Sync UI to the latest. (#10388) · ff94cfc4
      wu-sheng 提交于
      ff94cfc4
  16. 13 2月, 2023 2 次提交
  17. 09 2月, 2023 1 次提交
  18. 07 2月, 2023 2 次提交
  19. 06 2月, 2023 3 次提交