Add tests for R builds
This commit is contained in:
parent
69b268e6f7
commit
1de359f3e6
1 changed files with 505 additions and 0 deletions
75
test/docker-compose.yml
Normal file
75
test/docker-compose.yml
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
version: '2.0'
|
||||
|
||||
services:
|
||||
ubuntu-1804:
|
||||
image: ubuntu:bionic
|
||||
command: /test/test-deb.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=ubuntu-1804
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
ubuntu-2004:
|
||||
image: ubuntu:focal
|
||||
command: /test/test-deb.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=ubuntu-2004
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
ubuntu-2204:
|
||||
image: ubuntu:jammy
|
||||
command: /test/test-deb.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=ubuntu-2204
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
debian-11:
|
||||
image: debian:bullseye
|
||||
command: /test/test-deb.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=debian-11
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
debian-10:
|
||||
image: debian:buster
|
||||
command: /test/test-deb.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=debian-10
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
centos-7:
|
||||
image: centos:centos7
|
||||
command: /test/test-centos.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=centos-7
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
centos-8:
|
||||
image: rockylinux:8
|
||||
command: /test/test-centos.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=centos-8
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
opensuse-153:
|
||||
image: opensuse/leap:15.3
|
||||
command: /test/test-opensuse.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=opensuse-153
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
Loading…
Reference in a new issue