Skip to content
Merged
4 changes: 3 additions & 1 deletion .github/workflows/l10n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,10 @@ jobs:
shell: pwsh
- name: Download Executable
if: ${{ inputs.win_installer_link }}
env:
WIN_INSTALLER_LINK: ${{ inputs.win_installer_link }}
run: |
Invoke-WebRequest -Uri ${{ inputs.win_installer_link }} -OutFile "${{ github.workspace }}\setup.exe"
Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe"
New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force
shell: pwsh
- name: Install Beta
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,11 @@ jobs:
shell: pwsh
- name: Download Executable
if: ${{ inputs.win_installer_link }}
env:
WIN_INSTALLER_LINK: ${{ inputs.win_installer_link }}
run: |
echo "STARFOX_SPLIT=ci-extended" | Out-File -FilePath .env -Encoding utf8 -Append -Force
Invoke-WebRequest -Uri ${{ inputs.win_installer_link }} -OutFile "${{ github.workspace }}\setup.exe"
echo "STARFOX_SPLIT=smoke" | Out-File -FilePath .env -Encoding utf8 -Append -Force
Invoke-WebRequest -Uri $WIN_INSTALLER_LINK -OutFile "${{ github.workspace }}\setup.exe"
New-Item -ItemType Directory -Path "C:\Program Files\Custom Firefox" -Force
shell: pwsh
- name: Install Beta
Expand Down Expand Up @@ -179,7 +181,7 @@ jobs:
if: ${{ inputs.mac_installer_link }}
run: |
echo "MANUAL='true'" >> "$GITHUB_ENV";
echo "STARFOX_SPLIT=ci-extended" >> .env
echo "STARFOX_SPLIT=smoke" >> .env
echo "Running smoke tests on supplied executable";
- name: Install dependencies
run: |
Expand Down Expand Up @@ -243,7 +245,7 @@ jobs:
MANUAL_DOWNLOAD_LINK: ${{ inputs.linux_tarball_link }}
run: |
echo "MANUAL='true'" >> "$GITHUB_ENV";
echo "STARFOX_SPLIT=ci-extended" >> "$GITHUB_ENV"
echo "STARFOX_SPLIT=smoke" >> "$GITHUB_ENV"
echo "Running smoke tests on supplied executable";
sudo apt install gnome-screenshot
uname -m;
Expand Down
Loading