-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into bugfix/auth-http-302-ids-with-slashes
- Loading branch information
Showing
175 changed files
with
4,537 additions
and
1,569 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,46 @@ | ||
name: CI | ||
on: [push, pull_request] | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- release/* | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
java: [jdk11, jdk15, graalvm] | ||
java: [jdk11, jdk17, jdk18, jdk21, graalvm] | ||
fail-fast: false | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
- name: Test in Linux JDK 11 | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk11' | ||
run: docker-compose -f docker/Linux-JDK11/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Linux JDK 15 | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk15' | ||
run: docker-compose -f docker/Linux-JDK15/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Linux JDK 16 | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk16' | ||
run: docker-compose -f docker/Linux-JDK16/docker-compose.yml up --build --exit-code-from cantaloupe | ||
run: docker compose -f docker/Linux-JDK11/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Linux JDK 17 (LTS) | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk17' | ||
run: docker compose -f docker/Linux-JDK17/compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Linux JDK 18 | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk18' | ||
run: docker compose -f docker/Linux-JDK18/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Linux JDK 21 (LTS) | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk21' | ||
run: docker compose -f docker/Linux-JDK21/compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Linux GraalVM | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'graalvm' | ||
run: docker-compose -f docker/Linux-GraalVM20/docker-compose.yml up --build --exit-code-from cantaloupe | ||
run: docker compose -f docker/Linux-GraalVM20/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Windows JDK 11 | ||
if: matrix.os == 'windows-latest' && matrix.java == 'jdk11' | ||
run: docker-compose -f docker/Windows-JDK11/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Windows JDK 15 | ||
if: matrix.os == 'windows-latest' && matrix.java == 'jdk15' | ||
run: docker-compose -f docker/Windows-JDK15/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Windows JDK 16 | ||
if: matrix.os == 'windows-latest' && matrix.java == 'jdk16' | ||
run: docker-compose -f docker/Windows-JDK16/docker-compose.yml up --build --exit-code-from cantaloupe | ||
run: docker compose -f docker/Windows-JDK11/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Windows JDK 17 (LTS) | ||
if: matrix.os == 'windows-latest' && matrix.java == 'jdk17' | ||
run: docker compose -f docker/Windows-JDK17/compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Windows JDK 18 | ||
if: matrix.os == 'windows-latest' && matrix.java == 'jdk18' | ||
run: docker compose -f docker/Windows-JDK18/docker-compose.yml up --build --exit-code-from cantaloupe | ||
- name: Test in Windows JDK 21 (LTS) | ||
if: matrix.os == 'windows-latest' && matrix.java == 'jdk21' | ||
run: docker compose -f docker/Windows-JDK21/compose.yml up --build --exit-code-from cantaloupe | ||
# TODO: Windows+GraalVM | ||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ Thumbs.db | |
.settings/* | ||
|
||
# IntelliJ stuff | ||
/.idea/* | ||
/.idea | ||
/*.iml | ||
/*.ipr | ||
/*.iws | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Credits | ||
|
||
The success of this project is down to the great work done by the developers at the University of Illinois and particularly Alex Dolski who has been the main developer on the project. In 2023 the IIIF consortium offered to help release a security patch as so many IIIF community members are using this great software. | ||
|
||
- Cantaloupe 5.0.6 | ||
* [Glen Robson](https://github.com/glenrobson/) with support from the [IIIF Consortium](https://iiif.io/community/consortium/) | ||
|
||
- Cantaloupe v1 - v6 | ||
* [Alex Dolski](https://github.com/adolski), University of Illinois |
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
Oops, something went wrong.