We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f9b285 commit 15438c8Copy full SHA for 15438c8
1 file changed
.github/workflows/ci.yml
@@ -73,6 +73,14 @@ jobs:
73
74
simradio_testing:
75
runs-on: ubuntu-latest
76
+ strategy:
77
+ fail-fast: false
78
+ matrix:
79
+ channel:
80
+ - beta
81
+ - alpha
82
+ - daily
83
+ continue-on-error: ${{ matrix.channel == 'daily' }}
84
steps:
85
- uses: actions/checkout@v4
86
- name: Install Python 3
@@ -85,9 +93,9 @@ jobs:
93
pip3 install poetry
94
poetry install --all-extras --with dev
87
95
poetry run meshtastic --version
88
- - name: Install meshtasticd (beta) from PPA
96
+ - name: Install meshtasticd (${{ matrix.channel }}) from PPA
89
97
run: |
90
- sudo add-apt-repository -y ppa:meshtastic/beta
98
+ sudo add-apt-repository -y ppa:meshtastic/${{ matrix.channel }}
91
99
sudo apt-get update
92
100
sudo apt-get install -y meshtasticd
101
- name: Run firmware smoke tests
0 commit comments