Skip to content

fix(oohelperd): make sure endpoints don't connect to 127.0.0.1 (#1463) #1180

fix(oohelperd): make sure endpoints don't connect to 127.0.0.1 (#1463)

fix(oohelperd): make sure endpoints don't connect to 127.0.0.1 (#1463) #1180

Workflow file for this run

# 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