forked from ooni/probe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (33 loc) · 926 Bytes
/
debianrepo.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
# Ensures we can install on debian with the official build instructions
name: debianrepo
on:
push:
branches:
- "master"
- "release/**"
- "fullbuild"
jobs:
test_386:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker i386
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
test_amd64:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker amd64
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
test_arm:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker armhf
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
test_arm64:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker arm64
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt