Skip to content

Commit 15438c8

Browse files
committed
matrix up daily/alpha/beta
1 parent 2f9b285 commit 15438c8

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ jobs:
7373
7474
simradio_testing:
7575
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' }}
7684
steps:
7785
- uses: actions/checkout@v4
7886
- name: Install Python 3
@@ -85,9 +93,9 @@ jobs:
8593
pip3 install poetry
8694
poetry install --all-extras --with dev
8795
poetry run meshtastic --version
88-
- name: Install meshtasticd (beta) from PPA
96+
- name: Install meshtasticd (${{ matrix.channel }}) from PPA
8997
run: |
90-
sudo add-apt-repository -y ppa:meshtastic/beta
98+
sudo add-apt-repository -y ppa:meshtastic/${{ matrix.channel }}
9199
sudo apt-get update
92100
sudo apt-get install -y meshtasticd
93101
- name: Run firmware smoke tests

0 commit comments

Comments
 (0)