Skip to content

Commit 437c37c

Browse files
CI/Fix broken login and missing boards (#1148)
Fix CI LAVA jobs: - add login details to qcom-distro jobs - bring back dragonboard jobs which were missing after last refactoring
2 parents 287df8a + 9007abc commit 437c37c

File tree

8 files changed

+17
-1
lines changed

8 files changed

+17
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,17 @@ jobs:
4949
if [ "${{ matrix.machine }}" = "qcom-armv8a" ]; then
5050
python3 ci/generatetests.py --templates ci/lava --os ${{ matrix.distro.name }} --device dragonboard-410c --build-url "${BUILD_URL}"
5151
python3 ci/generatetests.py --templates ci/lava --os ${{ matrix.distro.name }} --device dragonboard-820c --build-url "${BUILD_URL}"
52+
echo "MACHINE=dragonboard" >> $GITHUB_ENV
5253
else
5354
python3 ci/generatetests.py --templates ci/lava --os ${{ matrix.distro.name }} --device ${{ matrix.machine }} --build-url "${BUILD_URL}"
55+
echo "MACHINE=${{ matrix.machine }}" >> $GITHUB_ENV
5456
fi
5557
fi
5658
- name: 'Upload test jobs'
5759
uses: actions/upload-artifact@v4
5860
with:
5961
name: testjobs-${{ matrix.machine }}-${{ matrix.distro.name }}
60-
path: ${{ matrix.machine }}-${{ matrix.distro.name }}-*.yaml
62+
path: ${{ env.MACHINE}}*-${{ matrix.distro.name }}-*.yaml
6163

6264
prepare-job-list:
6365
needs: prepare-jobs

ci/lava/qcom-distro/dragonboard-410c/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ actions:
4141
auto_login:
4242
login_prompt: 'login:'
4343
username: root
44+
password_prompt: 'Password'
45+
password: oelinux123
4446
prompts:
4547
- 'root@qcom-armv8a'
4648
timeout:

ci/lava/qcom-distro/dragonboard-820c/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ actions:
4141
auto_login:
4242
login_prompt: 'login:'
4343
username: root
44+
password_prompt: 'Password'
45+
password: oelinux123
4446
prompts:
4547
- 'root@qcom-armv8a'
4648
timeout:

ci/lava/qcom-distro/iq-9075-evk/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ actions:
3333
auto_login:
3434
login_prompt: 'login:'
3535
username: root
36+
password_prompt: 'Password'
37+
password: oelinux123
3638
method: minimal
3739
prompts:
3840
- root@{{DEVICE_TYPE}}

ci/lava/qcom-distro/qcs6490-rb3gen2-core-kit/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ actions:
3333
auto_login:
3434
login_prompt: 'login:'
3535
username: root
36+
password_prompt: 'Password'
37+
password: oelinux123
3638
method: minimal
3739
prompts:
3840
- root@{{DEVICE_TYPE}}

ci/lava/qcom-distro/qcs8300-ride-sx/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ actions:
3333
auto_login:
3434
login_prompt: 'login:'
3535
username: root
36+
password_prompt: 'Password'
37+
password: oelinux123
3638
method: minimal
3739
prompts:
3840
- root@{{DEVICE_TYPE}}

ci/lava/qcom-distro/qcs9100-ride-sx/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ actions:
3333
auto_login:
3434
login_prompt: 'login:'
3535
username: root
36+
password_prompt: 'Password'
37+
password: oelinux123
3638
method: minimal
3739
prompts:
3840
- root@{{DEVICE_TYPE}}

ci/lava/qcom-distro/qrb2210-rb1-core-kit/boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ actions:
3333
auto_login:
3434
login_prompt: 'login:'
3535
username: root
36+
password_prompt: 'Password'
37+
password: oelinux123
3638
method: minimal
3739
prompts:
3840
- root@{{DEVICE_TYPE}}

0 commit comments

Comments
 (0)