forked from libusb/hidapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .cirrus.yml config for Cirrus-CI (libusb#15)
Configure with Alpine, FreeBSD 11 and 12 tasks
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
alpine_task: | ||
container: | ||
image: alpine:latest | ||
install_script: apk add autoconf automake g++ gcc libusb-dev libtool linux-headers eudev-dev make musl-dev | ||
script: | ||
- ./bootstrap | ||
- ./configure || { cat config.log; exit 1; } | ||
- make | ||
- make install | ||
|
||
freebsd11_task: | ||
freebsd_instance: | ||
image: freebsd-11-2-release-amd64 | ||
install_script: | ||
- pkg install -y | ||
autoconf automake libiconv libtool pkgconf | ||
script: | ||
- ./bootstrap | ||
- ./configure || { cat config.log; exit 1; } | ||
- make | ||
- make install | ||
|
||
freebsd12_task: | ||
freebsd_instance: | ||
image: freebsd-12-1-release-amd64 | ||
install_script: | ||
- pkg install -y | ||
autoconf automake libiconv libtool pkgconf | ||
script: | ||
- ./bootstrap | ||
- ./configure || { cat config.log; exit 1; } | ||
- make | ||
- make install |