We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
repro
1 parent 9960417 commit 27ca553Copy full SHA for 27ca553
.github/workflows/repro.yml
@@ -0,0 +1,35 @@
1
+name: archlinux-repro
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
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 }}-*
0 commit comments