Skip to content

Commit

Permalink
Merge pull request #78 from netceteragroup/feature/#77-Update-to-java-21
Browse files Browse the repository at this point in the history
Feature/#77 update to java 21
  • Loading branch information
meierval authored Oct 17, 2023
2 parents 914b9b9 + dd8516c commit dfa9d3d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 50 deletions.
6 changes: 4 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,23 @@ version: 2
updates:
# Checks for outdated maven dependencies
- package-ecosystem: "maven"
patterns: *
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
open-pull-requests-limit: 10
commit-message:
prefix: "[dependabot]"
include: "scope"
# Checks for outdated GitHub actions
- package-ecosystem: "github-actions"
patterns: *
directory: "/"
schedule:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
open-pull-requests-limit: 10
commit-message:
prefix: "[dependabot]"
include: "scope"
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/build_girders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,24 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=girders-java

integration_tests_21:
name: Integration tests for Java 21
runs-on: ubuntu-latest
needs: build_girders
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21.0.0'
distribution: 'zulu'
cache: 'maven'
- name: run integration tests
run: mvn --batch-mode -f girders-demos/girders-demo-test/pom.xml install

integration_tests_17:
name: Integration tests for Java 17
runs-on: ubuntu-latest
Expand Down
48 changes: 1 addition & 47 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
junit.jupiter.execution.parallel.enabled=true
junit.jupiter.execution.parallel.enabled=false

0 comments on commit dfa9d3d

Please sign in to comment.