Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
👷 Boostrap using cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
trickypr authored Apr 16, 2022
1 parent 1a3b4b7 commit 003f506
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions .github/workflows/alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,25 +310,30 @@ jobs:
tar -xf pulse-browser.source.tar.gz -C engine
rm -rf pulse-browser.source.tar.gz
- name: Bootstrap
shell: cmd
run: |
cd engine
# - name: Bootstrap
# shell: cmd
# run: |
# cd engine

:: Get a bunch of details about the current directory
set "cwd_path=%cd%"
set "cwd_path=%cwd_path:\=/%"
set "cwd_path=%cwd_path:D:/=/d/%"
# :: Get a bunch of details about the current directory
# set "cwd_path=%cd%"
# set "cwd_path=%cwd_path:\=/%"
# set "cwd_path=%cwd_path:D:/=/d/%"

echo "Using %cwd_path% as the working directory"
echo ""
# echo "Using %cwd_path% as the working directory"
# echo ""

type nul > C:\script
echo cd %cwd_path% >> C:\script
echo ls >> C:\script
echo ./mach -v bootstrap --application-choice browser >> C:\script
type C:\script
C:\mozilla-build\start-shell.bat "C:\script"
# type nul > C:\script
# echo cd %cwd_path% >> C:\script
# echo ls >> C:\script
# echo ./mach -v bootstrap --application-choice browser >> C:\script
# type C:\script
# C:\mozilla-build\start-shell.bat "C:\script"

- name: Boostrap windows edition
run: |
cd engine
mach --no-interactive --verbose bootstrap --application-choice browser
- name: Build
run: yarn build --skip-patch-check
Expand Down

0 comments on commit 003f506

Please sign in to comment.