File tree Expand file tree Collapse file tree 8 files changed +177
-329
lines changed
Expand file tree Collapse file tree 8 files changed +177
-329
lines changed Original file line number Diff line number Diff line change @@ -207,8 +207,10 @@ jobs:
207207 shell : pwsh
208208 - name : Download Executable
209209 if : ${{ inputs.win_installer_link }}
210+ env :
211+ WIN_INSTALLER_LINK : ${{ inputs.win_installer_link }}
210212 run : |
211- Invoke-WebRequest -Uri ${{ inputs.win_installer_link }} -OutFile "${{ github.workspace }}\setup.exe"
213+ Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe"
212214 New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force
213215 shell : pwsh
214216 - name : Install Beta
Original file line number Diff line number Diff line change 9999 shell : pwsh
100100 - name : Download Executable
101101 if : ${{ inputs.win_installer_link }}
102+ env :
103+ WIN_INSTALLER_LINK : ${{ inputs.win_installer_link }}
102104 run : |
103- echo "STARFOX_SPLIT=ci-extended " | Out-File -FilePath .env -Encoding utf8 -Append -Force
104- Invoke-WebRequest -Uri ${{ inputs.win_installer_link }} -OutFile "${{ github.workspace }}\setup.exe"
105+ echo "STARFOX_SPLIT=smoke " | Out-File -FilePath .env -Encoding utf8 -Append -Force
106+ Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe"
105107 New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force
106108 shell : pwsh
107109 - name : Install Beta
@@ -179,7 +181,7 @@ jobs:
179181 if : ${{ inputs.mac_installer_link }}
180182 run : |
181183 echo "MANUAL='true'" >> "$GITHUB_ENV";
182- echo "STARFOX_SPLIT=ci-extended " >> .env
184+ echo "STARFOX_SPLIT=smoke " >> .env
183185 echo "Running smoke tests on supplied executable";
184186 - name : Install dependencies
185187 run : |
@@ -243,7 +245,7 @@ jobs:
243245 MANUAL_DOWNLOAD_LINK : ${{ inputs.linux_tarball_link }}
244246 run : |
245247 echo "MANUAL='true'" >> "$GITHUB_ENV";
246- echo "STARFOX_SPLIT=ci-extended " >> "$GITHUB_ENV"
248+ echo "STARFOX_SPLIT=smoke " >> "$GITHUB_ENV"
247249 echo "Running smoke tests on supplied executable";
248250 sudo apt install gnome-screenshot
249251 uname -m;
Original file line number Diff line number Diff line change @@ -214,8 +214,7 @@ def dedupe(run_list: list) -> list:
214214 fh .write ("\n " .join (ci_paths ))
215215 sys .exit (0 )
216216
217- if len (run_list ) < MIN_RUN_SIZE :
218- run_list .extend (ci_paths )
217+ run_list .extend (ci_paths )
219218
220219 # Dedupe just in case
221220 if SLASH == "\\ " :
You can’t perform that action at this time.
0 commit comments