-
Notifications
You must be signed in to change notification settings - Fork 146
41 lines (36 loc) · 862 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: btfs CI
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
schedule:
- cron: '0 12 1 * *'
jobs:
ubuntu:
runs-on: ubuntu-latest
name: 'Ubuntu (${{ matrix.image }})'
timeout-minutes: 10
strategy:
matrix:
image:
- 'ubuntu:latest'
- 'ubuntu:rolling'
- 'ubuntu:devel'
fail-fast: false
container:
image: ${{ matrix.image }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
apt-get update
apt-get -y install build-essential g++ autoconf autoconf-archive automake libtool libtorrent-rasterbar-dev libfuse-dev libcurl4-openssl-dev
- name: Build
run: |
autoreconf -i
./configure
make