Skip to content

Commit bcdde95

Browse files
authored
Merge pull request #23 from chesnokoff/dev
Dev
2 parents bf9b500 + eb486c6 commit bcdde95

File tree

12,380 files changed

+2030165
-20244
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

12,380 files changed

+2030165
-20244
lines changed

.github/workflows/sonarqube.yaml

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
name: SonarQube Analysis
2+
3+
on:
4+
push:
5+
branches: "**"
6+
pull_request:
7+
branches: "**"
8+
9+
jobs:
10+
sonarQube:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up JDK 17
15+
uses: actions/setup-java@v4
16+
with:
17+
java-version: '17'
18+
distribution: 'temurin'
19+
20+
- uses: actions/checkout@v4
21+
- name: Log system information
22+
run: |
23+
java -version
24+
free -h
25+
df -h
26+
27+
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
28+
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
29+
- name: Setup Gradle
30+
uses: gradle/actions/setup-gradle@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
31+
32+
- name: Run Tests and Build
33+
run: |
34+
./gradlew build \
35+
--scan
36+
37+
- name: Run Tests and SonarQube Scanner
38+
env:
39+
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
40+
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
41+
run: |
42+
./gradlew :modules:jsymbolic-core:sonar \
43+
-Dsonar.projectKey=jSymbolic \
44+
-Dsonar.host.url=${{ secrets.SONAR_HOST_URL }} \
45+
-Dsonar.token=${{ secrets.SONAR_TOKEN }} \
46+
-Dsonar.branch.name=${GITHUB_REF##*/} \
47+
-Dsonar.dynamicAnalysis=reuseReports \
48+
--scan
49+
50+
dependency-submission:
51+
runs-on: ubuntu-latest
52+
permissions:
53+
contents: write
54+
55+
steps:
56+
- uses: actions/checkout@v4
57+
- name: Set up JDK 17
58+
uses: actions/setup-java@v4
59+
with:
60+
java-version: '17'
61+
distribution: 'temurin'
62+
63+
# Generates and submits a dependency graph, enabling Dependabot Alerts for all project dependencies.
64+
# See: https://github.com/gradle/actions/blob/main/dependency-submission/README.md
65+
- name: Generate and submit dependency graph
66+
uses: gradle/actions/dependency-submission@af1da67850ed9a4cedd57bfd976089dd991e2582 # v4.0.0
17 Bytes
Binary file not shown.
17 Bytes
Binary file not shown.
File renamed without changes.
17 Bytes
Binary file not shown.
1 Byte
Binary file not shown.
17 Bytes
Binary file not shown.

.gradle/8.2/gc.properties

Whitespace-only changes.
17 Bytes
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#Fri Jan 24 22:23:34 MSK 2025
2+
gradle.version=8.2

0 commit comments

Comments
 (0)