Skip to content

Commit 6286eb4

Browse files
committed
disable keyring unlock for linux manual
1 parent 11379f9 commit 6286eb4

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/smoke.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ on:
1717
workflow_dispatch:
1818
inputs:
1919
win_installer_link:
20-
description: 'The link to the Windows installer for the Fx under test'
20+
description: 'The link to the Windows installer (win64) for the Fx under test'
2121
required: true
2222
type: string
2323
mac_installer_link:
2424
description: 'The link to the macOS installer for the Fx under test'
2525
required: true
2626
type: string
2727
linux_tarball_link:
28-
description: 'The link to the Linux tarball for the Fx under test'
28+
description: 'The link to the Linux tarball (linux-x86_64) for the Fx under test'
2929
required: true
3030
type: string
3131
env:
@@ -249,6 +249,7 @@ jobs:
249249
run: |
250250
echo "MANUAL='true'" >> "$GITHUB_ENV";
251251
echo "Running smoke tests on supplied executable";
252+
uname -m
252253
mkdir -p artifacts;
253254
pip3 install 'pipenv==2023.11.15';
254255
pip3 install 'ruff>=0.4.8,<0.5';
@@ -257,7 +258,7 @@ jobs:
257258
pipenv install;
258259
./collect_executables.sh
259260
./firefox/firefox --version;
260-
. ./keyring-unlock.sh;
261+
#. ./keyring-unlock.sh;
261262
- name: Run Smoke Tests in Ubuntu
262263
if: steps.setup.conclusion == 'success'
263264
env:

0 commit comments

Comments
 (0)