File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,17 @@ jobs:
32
32
mkdir obj
33
33
34
34
curl https://download-chromium.appspot.com/dl/Win_x64?type=snapshots -L -o obj/win-x64.zip
35
- unzip obj/win-x64.zip -d src/chromium.win-x64
35
+ unzip -o obj/win-x64.zip -d src/chromium.win-x64
36
+ rm ./src/chromium.win-x64/chrome-win/interactive_ui_tests.exe
36
37
echo Chromium build https://crrev.com/$(curl --silent https://download-chromium.appspot.com/rev/Win_x64?type=snapshots | grep -oP "\d{6,}") > src/chromium.win-x64/readme.md
37
38
38
39
curl https://download-chromium.appspot.com/dl/Win?type=snapshots -L -o obj/win-x86.zip
39
- unzip obj/win-x86.zip -d src/chromium.win-x86
40
+ unzip -o obj/win-x86.zip -d src/chromium.win-x86
41
+ rm ./src/chromium.win-x86/chrome-win/interactive_ui_tests.exe
40
42
echo Chromium build https://crrev.com/$(curl --silent https://download-chromium.appspot.com/rev/Win?type=snapshots | grep -oP "\d{6,}") > src/chromium.win-x86/readme.md
41
43
42
44
curl https://download-chromium.appspot.com/dl/Linux_x64?type=snapshots -L -o obj/linux-x64.zip
43
- unzip obj/linux-x64.zip -d src/chromium.linux-x64
45
+ unzip -o obj/linux-x64.zip -d src/chromium.linux-x64
44
46
echo Chromium build https://crrev.com/$(curl --silent https://download-chromium.appspot.com/rev/Linux_x64?type=snapshots | grep -oP "\d{6,}") > src/chromium.linux-x64/readme.md
45
47
46
48
- name : 🙏 build
Original file line number Diff line number Diff line change @@ -26,10 +26,12 @@ jobs:
26
26
27
27
curl https://download-chromium.appspot.com/dl/Win_x64?type=snapshots -L -o obj/win-x64.zip
28
28
unzip obj/win-x64.zip -d src/chromium.win-x64
29
+ rm ./src/chromium.win-x64/chrome-win/interactive_ui_tests.exe
29
30
echo Chromium build https://crrev.com/$(curl --silent https://download-chromium.appspot.com/rev/Win_x64?type=snapshots | grep -oP "\d{6,}") > src/chromium.win-x64/readme.md
30
31
31
32
curl https://download-chromium.appspot.com/dl/Win?type=snapshots -L -o obj/win-x86.zip
32
33
unzip obj/win-x86.zip -d src/chromium.win-x86
34
+ rm ./src/chromium.win-x86/chrome-win/interactive_ui_tests.exe
33
35
echo Chromium build https://crrev.com/$(curl --silent https://download-chromium.appspot.com/rev/Win?type=snapshots | grep -oP "\d{6,}") > src/chromium.win-x86/readme.md
34
36
35
37
curl https://download-chromium.appspot.com/dl/Linux_x64?type=snapshots -L -o obj/linux-x64.zip
You can’t perform that action at this time.
0 commit comments