blow away original workflow #2997
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ubuntu-build: | ||
| name: Package install test | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Add ka9q apt repository | ||
| run: | | ||
| curl -fsSL http://homer.ka9q.net/ka9q-archive-keyring.asc | \ | ||
| sudo tee /usr/share/keyrings/ka9q-archive-keyring.asc >/dev/null | ||
| echo "deb [signed-by=/usr/share/keyrings/ka9q-archive-keyring.asc arch=amd64] http://homer.ka9q.net ka9q main" | \ | ||
| sudo tee /etc/apt/sources.list.d/ka9q.list >/dev/null | ||
| sudo apt-get update | ||
| - name: Install package | ||
| run: | | ||
| sudo apt-get install -y ka9q-radio | ||
| - name: Smoke test | ||
| run: | | ||
| which radiod | ||
| radiod --help || true | ||