Skip to content

Commit ea7b433

Browse files
committed
Delete unnecessary interactive_ui_tests.exe after unzip
Fixes #95
1 parent 1830d77 commit ea7b433

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@ jobs:
3232
mkdir obj
3333
3434
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
3637
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
3738
3839
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
4042
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
4143
4244
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
4446
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
4547
4648
- name: 🙏 build

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ jobs:
2626
2727
curl https://download-chromium.appspot.com/dl/Win_x64?type=snapshots -L -o obj/win-x64.zip
2828
unzip obj/win-x64.zip -d src/chromium.win-x64
29+
rm ./src/chromium.win-x64/chrome-win/interactive_ui_tests.exe
2930
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
3031
3132
curl https://download-chromium.appspot.com/dl/Win?type=snapshots -L -o obj/win-x86.zip
3233
unzip obj/win-x86.zip -d src/chromium.win-x86
34+
rm ./src/chromium.win-x86/chrome-win/interactive_ui_tests.exe
3335
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
3436
3537
curl https://download-chromium.appspot.com/dl/Linux_x64?type=snapshots -L -o obj/linux-x64.zip

0 commit comments

Comments
 (0)