blob: e3003d68ed02f8a5c9ca8fbd8d63b5a97873aca5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
image: archlinux
packages:
- base-devel
- clang
sources:
- https://git.sr.ht/~spicywolf/nbtpd
triggers:
- action: email
condition: always
to: ~spicywolf/[email protected]
artifacts:
- linux-nbtpd.tar
tasks:
- build: |
cd nbtpd
make
- release: |
cd nbtpd
make release
- tar: |
tar -cvf linux-nbtpd.tar nbtpd/rel nbtpd/dbg nbtpd/bin
|