mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00
testing
This commit is contained in:
2
.github/workflows/alpha.yml
vendored
2
.github/workflows/alpha.yml
vendored
@@ -195,7 +195,7 @@ jobs:
|
||||
uses: ./.github/workflows/windows-profile-build.yml
|
||||
permissions:
|
||||
contents: write
|
||||
needs: [windows-step-1, build-data]
|
||||
needs: [build-data]
|
||||
with:
|
||||
build-version: ${{ needs.build-data.outputs.version }}
|
||||
profile-data-path-archive: zen-windows-x86_64-profile-data-and-jarlog.zip
|
||||
|
2
.github/workflows/windows-alpha-build.yml
vendored
2
.github/workflows/windows-alpha-build.yml
vendored
@@ -24,7 +24,7 @@ jobs:
|
||||
with:
|
||||
node-version: 20
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
# Give the runner some swap space in an attempt to stop gkrust from crashing the build
|
||||
- name: Set Swap Space
|
||||
|
34
.github/workflows/windows-profile-build.yml
vendored
34
.github/workflows/windows-profile-build.yml
vendored
@@ -16,31 +16,21 @@ jobs:
|
||||
runs-on: windows-latest
|
||||
# Script edited from https://github.com/Floorp-Projects/Floorp/blob/ESR115/.github/workflows/window-generate-profile-data-and-jarlog.yml
|
||||
steps:
|
||||
- name: Clone firefox-source
|
||||
run: |
|
||||
curl https://archive.mozilla.org/pub/firefox/releases/128.0/source/firefox-128.0.source.tar.xz --output firefox-128.0.source.tar.xz
|
||||
7z x firefox-128.0.source.tar.xz
|
||||
7z x firefox-128.0.source.tar
|
||||
mv firefox-128.0 firefox-source
|
||||
ls
|
||||
ls firefox-source
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/download-artifact@v4
|
||||
name: Download artifact
|
||||
- name: Install Node.js and pnpm
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
path: C:\artifact
|
||||
node-version: 20
|
||||
|
||||
- name: Unpack artifact
|
||||
run: |
|
||||
cd C:\artifact
|
||||
ls
|
||||
7z x ${{ inputs.profile-data-path-archive }}
|
||||
ls
|
||||
- name: Install pnpm
|
||||
run: npm install -g pnpm
|
||||
|
||||
- name: Setup
|
||||
run: |
|
||||
(New-Object System.Net.WebClient).DownloadFile("https://ftp.mozilla.org/pub/mozilla/libraries/win32/MozillaBuildSetup-Latest.exe","C:\MozillaBuildSetup-Latest.exe")
|
||||
C:\MozillaBuildSetup-Latest.exe /S | out-null
|
||||
|
||||
|
||||
- name: Download firefox
|
||||
run: pnpm surfer download
|
||||
|
||||
- name: Generate
|
||||
run: |
|
||||
@@ -48,7 +38,7 @@ jobs:
|
||||
$Env:USE_MINTTY = "0"
|
||||
|
||||
$workspace_dir = [regex]::replace($env:GITHUB_WORKSPACE, "^([A-Z]):", { "/" + $args.value.Substring(0, 1).toLower() }) -replace "\\","/"
|
||||
$workspace_dir = $workspace_dir + "/firefox-source"
|
||||
$workspace_dir = $workspace_dir + "/engine"
|
||||
cd $workspace_dir
|
||||
echo $workspace_dir
|
||||
|
||||
|
Reference in New Issue
Block a user