Use quick install script to test R builds
This commit is contained in:
parent
df380906fb
commit
83dfc554f2
1 changed files with 103 additions and 125 deletions
|
|
@ -3,73 +3,65 @@ version: '2.0'
|
|||
services:
|
||||
ubuntu-1804:
|
||||
image: ubuntu:bionic
|
||||
command: /test/test-deb.sh
|
||||
command: /r-builds/test/test-apt.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=ubuntu-1804
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
ubuntu-2004:
|
||||
image: ubuntu:focal
|
||||
command: /test/test-deb.sh
|
||||
command: /r-builds/test/test-apt.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=ubuntu-2004
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
ubuntu-2204:
|
||||
image: ubuntu:jammy
|
||||
command: /test/test-deb.sh
|
||||
command: /r-builds/test/test-apt.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=ubuntu-2204
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
debian-11:
|
||||
image: debian:bullseye
|
||||
command: /test/test-deb.sh
|
||||
command: /r-builds/test/test-apt.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=debian-11
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
debian-10:
|
||||
image: debian:buster
|
||||
command: /test/test-deb.sh
|
||||
command: /r-builds/test/test-apt.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=debian-10
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
centos-7:
|
||||
image: centos:centos7
|
||||
command: /test/test-centos.sh
|
||||
command: /r-builds/test/test-yum.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=centos-7
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
centos-8:
|
||||
image: rockylinux:8
|
||||
command: /test/test-centos.sh
|
||||
command: /r-builds/test/test-yum.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=centos-8
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
opensuse-153:
|
||||
image: opensuse/leap:15.3
|
||||
command: /test/test-opensuse.sh
|
||||
command: /r-builds/test/test-zypper.sh
|
||||
environment:
|
||||
- OS_IDENTIFIER=opensuse-153
|
||||
- R_VERSION=${R_VERSION}
|
||||
volumes:
|
||||
- ./:/test
|
||||
- ../builder/integration/tmp:/packages
|
||||
- ../:/r-builds
|
||||
|
|
|
|||
Loading…
Reference in a new issue