Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
findingrish committed Jul 16, 2024
1 parent 5e8e56a commit a8d2c68
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/static-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
cache: 'maven'

- name: packaging check
if: false
run: |
./.github/scripts/setup_generate_license.sh
${MVN} clean install -Prat --fail-at-end \
Expand All @@ -63,7 +64,7 @@ jobs:
- name: script checks
# who watches the watchers?
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ./check_test_suite_test.py

- name: (openjdk17) strict compilation
Expand All @@ -80,36 +81,36 @@ jobs:
${MVN} install -q -ff -pl 'distribution' ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS}
- name: checkstyle
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ${MVN} checkstyle:checkstyle --fail-at-end

- name: license checks
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ./.github/scripts/license_checks_script.sh

- name: analyze dependencies
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: |
./.github/scripts/analyze_dependencies_script.sh
- name: animal sniffer checks
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ${MVN} animal-sniffer:check --fail-at-end

- name: enforcer checks
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ${MVN} enforcer:enforce --fail-at-end

- name: forbidden api checks
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ${MVN} forbiddenapis:check forbiddenapis:testCheck --fail-at-end

- name: pmd checks
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ${MVN} pmd:check --fail-at-end # TODO: consider adding pmd:cpd-check

- name: spotbugs checks
if: ${{ matrix.java == '8' }}
if: false #${{ matrix.java == '8' }}
run: ${MVN} spotbugs:check --fail-at-end -pl '!benchmarks'

intellij-inspections:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-and-integration-tests-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ name: "Unit & Integration tests CI"
on:
- pull_request_target

#concurrency:
# group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.run_id }}' # group workflows only on pull_requests and not on branch commits
# cancel-in-progress: true
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.run_id }}' # group workflows only on pull_requests and not on branch commits
cancel-in-progress: true

env:
MYSQL_DRIVER_CLASSNAME: com.mysql.jdbc.Driver # Used to set druid config in docker image for revised ITs
Expand Down

0 comments on commit a8d2c68

Please sign in to comment.