ooni-probe-cli/.github/workflows/debianrepo.yml
Simone Basso 2a7fdcd810
feat: make sure our debian repo is WAI (#351)
We want to be sure it's working for all the supported archs.

See https://github.com/ooni/probe/issues/1484
2021-05-19 14:12:33 +02:00

37 lines
861 B
YAML

# debianrepo ensures we can install on debian with the official build instructions
name: linux
on:
push:
branches:
- "master"
- "issue/1484"
jobs:
test_386:
runs-on: "ubuntu-20.04"
steps:
- uses: actions/checkout@v2
- run: ./E2E/debian.sh docker i386
test_amd64:
runs-on: "ubuntu-20.04"
steps:
- uses: actions/checkout@v2
- run: ./E2E/debian.sh docker amd64
test_arm:
runs-on: "ubuntu-20.04"
steps:
- uses: actions/checkout@v2
- run: sudo apt-get update -q
- run: sudo apt-get install -y qemu-user-static
- run: ./E2E/debian.sh docker armhf
build_arm64:
runs-on: "ubuntu-20.04"
steps:
- uses: actions/checkout@v2
- run: sudo apt-get update -q
- run: sudo apt-get install -y qemu-user-static
- run: ./E2E/debian.sh docker arm64