-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into weigl/overop
* main: (109 commits) increase spotless version (and thus also eclipse formatter) to fix missing space in instanceof formatting Spotless and fix rebase Some additional minor fixes and spotlessApply Update `collect(Collectors.toList())` to `toList()` Introduction of record classes where it seems useful. Refactor: Introduce a pattern variable were possible. Translate large string concatenations into raw string literal (text blocks) update beanshell version in recoder's dependencies Switch to Java 17 for KeY-2.14.0 repair POM generation using afterEvaluate Adding license to KeY files Adding license to Java files add metadata for POM generation and update templates for license headers Bump ch.qos.logback:logback-classic from 1.4.8 to 1.4.11 Fix bug in icon selection update samplesIndex.txt Repair example index better default keyboard shortcuts, corrected docs URL, cleanup removing the SmansEtAl example from first touch change docking frames dependencies to maven central versions ...
- Loading branch information
Showing
3,299 changed files
with
15,024 additions
and
13,088 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
push: | ||
branches: | ||
- main | ||
- 'releases/*' | ||
- 'KeY-*' | ||
|
||
jobs: | ||
qodana: | ||
|
@@ -30,7 +30,7 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
java-version: '17' | ||
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
|
@@ -61,7 +61,7 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
java-version: '17' | ||
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
|
@@ -87,7 +87,7 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '11' | ||
java-version: '17' | ||
- name: Build with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,9 @@ on: | |
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
branches: | ||
- "main" | ||
- "KeY-*" | ||
merge_group: | ||
|
||
permissions: | ||
|
@@ -21,7 +23,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
java: [11, 17] | ||
java: [17] | ||
continue-on-error: true | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
|
@@ -44,7 +46,7 @@ jobs: | |
name: pr-number | ||
path: pr/ | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
|
@@ -63,6 +65,8 @@ jobs: | |
path: | | ||
**/build/test-results/*/*.xml | ||
**/build/reports/ | ||
!**/jacocoTestReport.xml | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
|
@@ -76,11 +80,11 @@ jobs: | |
matrix: | ||
test: [testProveRules, testRunAllFunProofs, testRunAllInfProofs] | ||
os: [ubuntu-latest] | ||
java: [11] | ||
java: [17] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
|
@@ -95,6 +99,8 @@ jobs: | |
|
||
- name: Install SMT-Solvers | ||
run: .github/dlsmt.sh | ||
shell: bash | ||
|
||
|
||
- name: "Running tests: ${{ matrix.test }}" | ||
uses: gradle/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,15 +13,15 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
java: [11, 17] | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
java: [17] | ||
continue-on-error: true | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
|
@@ -36,13 +36,12 @@ jobs: | |
uses: actions/[email protected] | ||
if: success() || failure() | ||
with: | ||
name: test-results | ||
name: test-results-${{ matrix.os }} | ||
path: | | ||
**/build/test-results/*/*.xml | ||
**/build/reports/ | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
!**/jacocoTestReport.xml | ||
integration-tests: | ||
env: | ||
|
@@ -52,12 +51,12 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
test: [testProveRules, testRunAllFunProofs, testRunAllInfProofs] | ||
os: [ ubuntu-latest, windows-latest, macos-latest ] | ||
java: [11,17] | ||
os: [ macos-latest, ubuntu-latest, windows-latest ] | ||
java: [17] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
|
@@ -82,8 +81,10 @@ jobs: | |
uses: actions/[email protected] | ||
if: success() || failure() # run this step even if previous step failed | ||
with: | ||
name: test-results | ||
name: test-results-${{ matrix.os }} | ||
path: | | ||
**/build/test-results/*/*.xml | ||
key.core/build/reports/runallproofs/* | ||
**/build/reports/ | ||
!**/jacocoTestReport.xml | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ | |
Sweden | ||
|
||
|
||
WWW: http://key-project.org | ||
e-mail: [email protected] | ||
WWW: https://www.key-project.org/ | ||
e-mail: [email protected] | ||
|
||
The KeY system is protected by the GNU General Public License. | ||
|
||
|
Oops, something went wrong.