mirror of
https://github.com/RPCS3/hidapi.git
synced 2026-01-31 01:25:21 +01:00
Add .cirrus.yml config for Cirrus-CI (#15)
Configure with Alpine, FreeBSD 11 and 12 tasks
This commit is contained in:
33
.cirrus.yml
Normal file
33
.cirrus.yml
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user