Skip to content

Commit df26918

Browse files
committed
Add stubs for debian and fedora
1 parent e491523 commit df26918

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ matrix:
1313
dist: trusty
1414
sudo: required
1515
env: RID=rhel-x64
16+
- os: linux
17+
dist: trusty
18+
sudo: required
19+
env: RID=fedora-x64
20+
- os: linux
21+
dist: trusty
22+
sudo: required
23+
env: RID=debian.9-x64
1624
- os: osx
1725
env: RID=osx
1826

Dockerfile.debian.9-x64

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM debian:9
2+
WORKDIR /nativebinaries
3+
COPY . /nativebinaries/
4+
5+
# RUN yum -y install gcc openssl cmake
6+
7+
CMD ["/bin/bash", "-c", "./build.libgit2.sh"]

Dockerfile.fedora-x64

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM fedora:26
2+
WORKDIR /nativebinaries
3+
COPY . /nativebinaries/
4+
5+
# RUN yum -y install gcc openssl cmake
6+
7+
CMD ["/bin/bash", "-c", "./build.libgit2.sh"]

0 commit comments

Comments
 (0)