Skip to content

Commit 0a1a544

Browse files
committed
Add support for Alpine Linux
1 parent bc95ba7 commit 0a1a544

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ matrix:
2121
dist: trusty
2222
sudo: required
2323
env: RID=debian.9-x64
24+
- os: linux
25+
dist: trusty
26+
sudo: required
27+
env: RID=alpine-x64
2428
- os: osx
2529
env: RID=osx
2630

Dockerfile.alpine-x64

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM alpine:3.7
2+
WORKDIR /nativebinaries
3+
COPY . /nativebinaries/
4+
5+
RUN apk add --no-cache bash build-base cmake curl-dev openssl-dev
6+
7+
CMD ["/bin/bash", "-c", "./build.libgit2.sh"]

0 commit comments

Comments
 (0)