-
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.
Add --build arguments to docker compose invocations
- Loading branch information
Showing
1 changed file
with
56 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
- release/* | ||
pull_request: | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
java: [jdk11, jdk18, graalvm] | ||
fail-fast: false | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4 | ||
- name: Test in Linux JDK 11 | ||
if: matrix.os == 'ubuntu-latest' && matrix.java == 'jdk11' | ||
<<<<<<< HEAD | ||
run: docker compose -f docker/Linux-JDK11/docker-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 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 | ||
- 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 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 | ||
======= | ||
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 | ||
- 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 | ||
- 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 | ||
>>>>>>> c540e8d10 (Add --build arguments to docker compose invocations) | ||
# TODO: Windows+GraalVM |