Skip to content

Commit

Permalink
Merge pull request #1812 from ClickHouse/fix_example_build
Browse files Browse the repository at this point in the history
Fix example build & sonar
  • Loading branch information
chernser authored Sep 6, 2024
2 parents 24b09c3 + d9d61b7 commit a4ffc96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: |
8
17
java-version: 17
cache: "maven"
- name: Setup Toolchain
shell: bash
Expand Down Expand Up @@ -90,13 +88,13 @@ jobs:
- name: Build and install
run: |
find . -type f -name "simplelogger.*" -exec rm -fv '{}' \;
mvn -q --batch-mode --projects '!clickhouse-benchmark' -DclickhouseVersion=$PREFERRED_LTS_VERSION \
mvn -q --batch-mode -DclickhouseVersion=$PREFERRED_LTS_VERSION \
-DskipTests install
- name: Analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
mvn --batch-mode --projects '!clickhouse-benchmark' -DclickhouseVersion=$PREFERRED_LTS_VERSION \
mvn --batch-mode -DclickhouseVersion=$PREFERRED_LTS_VERSION \
-Panalysis verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
continue-on-error: true
Empty file.

This file was deleted.

0 comments on commit a4ffc96

Please sign in to comment.