Skip to content

Commit

Permalink
ci test: use array for command line
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 13, 2025
1 parent 47d5ee1 commit efbec5c
Showing 1 changed file with 30 additions and 19 deletions.
49 changes: 30 additions & 19 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh
- /host/dockerfiles/run-test.sh

alpine-linux:
build:
Expand All @@ -32,7 +32,8 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

alt-linux:
build:
Expand All @@ -41,7 +42,8 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

amazon-linux-2:
build:
Expand All @@ -50,7 +52,8 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

amazon-linux-2023:
build:
Expand All @@ -59,7 +62,8 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

arch-linux:
build:
Expand All @@ -68,7 +72,9 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo dummy-mysql
- /host/dockerfiles/run-test.sh
- dummy-cairo
- dummy-mysql

conda:
build:
Expand All @@ -77,7 +83,8 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

debian-bookworm:
build:
Expand All @@ -88,7 +95,7 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh
- /host/dockerfiles/run-test.sh

fedora:
build:
Expand All @@ -99,12 +106,13 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

gentoo-linux-portage:
image: gentoo/portage
command:
/bin/true
- /bin/true

gentoo-linux:
build:
Expand All @@ -115,7 +123,8 @@ services:
volumes_from:
- gentoo-linux-portage
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

opensuse:
build:
Expand All @@ -124,7 +133,8 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

pld-linux:
build:
Expand All @@ -135,7 +145,8 @@ services:
security_opt:
- seccomp:unconfined
command:
/host/dockerfiles/run-test.sh dummy-cairo
- /host/dockerfiles/run-test.sh
- dummy-cairo

ubuntu-20.04:
build:
Expand All @@ -148,10 +159,10 @@ services:
command:
# dummy-groonga-repository-raw and dummy-postgresql-17 don't work
# because inline Singed-By doesn't work.
/host/dockerfiles/run-test.sh \
dummy-cairo \
dummy-groonga-repository-package \
dummy-mysql
- /host/dockerfiles/run-test.sh
- dummy-cairo
- dummy-groonga-repository-package
- dummy-mysql

ubuntu-22.04:
build:
Expand All @@ -162,7 +173,7 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh
- /host/dockerfiles/run-test.sh

ubuntu-24.04:
build:
Expand All @@ -173,4 +184,4 @@ services:
volumes:
- .:/host:delegated
command:
/host/dockerfiles/run-test.sh
- /host/dockerfiles/run-test.sh

0 comments on commit efbec5c

Please sign in to comment.