File tree Expand file tree Collapse file tree 2 files changed +55
-0
lines changed
Expand file tree Collapse file tree 2 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Makefile CI
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+
16+ - name : Install dependencies
17+ run : sudo apt update && sudo apt install -y asciidoc
18+
19+ - name : Run make
20+ run : make
Original file line number Diff line number Diff line change 1+ name : archlinux-repro
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ fail-fast : false
14+ matrix :
15+ pkg :
16+ - archlinux-repro
17+ - which
18+
19+ steps :
20+ - uses : actions/checkout@v2
21+
22+ - name : Install dependencies
23+ run : sudo apt update && sudo apt install -y asciidoc systemd-container
24+
25+ - name : Install archlinux-repro
26+ run : sudo make install
27+
28+ - name : Fetch pkg
29+ run : docker run --rm -v $PWD/pkg:/var/cache/pacman/pkg archlinux pacman -Syw ${{ matrix.pkg }} --noconfirm
30+
31+ - name : Remove signatures
32+ run : sudo rm ./pkg/*.sig
33+
34+ - name : Test repro
35+ run : repro ./pkg/${{ matrix.pkg }}-*
You can’t perform that action at this time.
0 commit comments