mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-26 03:22:08 +03:00
46e118ee84
.travis.yml is obviously still Travis-specific, but tests/ci-* are designed to be shareable with other CI environments if there is interest in doing so. At the moment I'm only testing on Debian and Ubuntu. In principle we could try a non-Debian-derived Docker container such as Fedora or CentOS inside travis-ci's Ubuntu environment, similar to what I'm doing for Debian, but I don't know the correct setup commands to use there. Closes: #438 Approved by: cgwalters
11 lines
262 B
Plaintext
11 lines
262 B
Plaintext
FROM @ci_docker@
|
|
ENV container docker
|
|
|
|
ADD tests/ci-install.sh /ci-install.sh
|
|
RUN ci_suite="@ci_suite@" ci_distro="@ci_distro@" ci_in_docker=yes /ci-install.sh
|
|
|
|
ADD . /home/user/ostree
|
|
RUN chown -R user:user /home/user/ostree
|
|
WORKDIR /home/user/ostree
|
|
USER user
|