blob: 07908a23b301ff0893c0d0b209966159bfdae3ba (
plain)
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
|
image: alpine/edge
packages:
- musl-dev
- gcc
- bison
- curl
- rsync
- shellcheck
- texinfo
- gzip
tasks:
- build: |
cd cpt
make
- install-pax: |
git clone https://github.com/carbslinux/otools
cd otools
make pax
sudo install -Dm755 pax /usr/bin/pax
- test: |
cd cpt
curl -fsSL https://git.io/shellspec | sudo sh -s -- -y -p /usr
make test
triggers:
- action: email
condition: failure
to: cem@carbslinux.org
|