Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(connect): use t3w1 in nigthly tests #15200

Merged
merged 3 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-connect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Set other devices matrix
id: set-matrix-other-devices
run: echo "otherDevicesMatrix=$(node ./scripts/ci/connect-test-matrix-generator.js --model=all --firmware=2-latest --env=node --groups=api --cache_tx=true --transport=Bridge)" >> $GITHUB_OUTPUT
run: echo "otherDevicesMatrix=$(node ./scripts/ci/connect-test-matrix-generator.js --model=all --firmware=2-main --env=node --groups=api --cache_tx=true --transport=Bridge)" >> $GITHUB_OUTPUT

PR-check:
needs: [build, set-matrix]
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
testPattern: ${{ matrix.groups.pattern }}
includeFilter: ${{ matrix.groups.includeFilter }}
testsFirmware: ${{ matrix.firmware }}
testDescription: ${{ matrix.model }}
testDescription: ${{ matrix.model }}-${{ matrix.firmware }}
cache_tx: ${{ matrix.cache_tx }}
transport: ${{ matrix.transport }}
testEnv: ${{ matrix.env }}
Expand Down
2 changes: 1 addition & 1 deletion packages/connect/e2e/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const getEmulatorOptions = (availableFirmwares: Firmwares) => {
: 'T2T1';
const latest = getLatestFirmware(model);

if (!latest) {
if (firmwareArg?.endsWith('-latest') && !latest) {
// should never happen
throw new Error('could not translate n-latest into specific firmware version');
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/connect-test-matrix-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const firmwares2 = ['2.3.0', '2-latest', '2-main'];
const inputs = [
{
key: 'model',
value: ['T1B1', 'T2T1', 'T2B1', 'T3B1', 'T3T1'],
value: ['T1B1', 'T2T1', 'T2B1', 'T3B1', 'T3T1', 'T3W1'],
},

{
Expand Down
Loading