Skip to content

Commit d80b0b0

Browse files
committed
Remove linux 386 due to dropped support in chromium 104 and upwards
1 parent 89c81ce commit d80b0b0

File tree

6 files changed

+4
-70
lines changed

6 files changed

+4
-70
lines changed

.github/workflows/build-all.yml

-28
Original file line numberDiff line numberDiff line change
@@ -85,34 +85,6 @@ jobs:
8585
asset_content_type: application/octet-stream
8686

8787

88-
build-linux-i386:
89-
runs-on: ubuntu-latest
90-
needs: create-release
91-
steps:
92-
- uses: actions/checkout@v1
93-
- name: Set up QEMU
94-
uses: docker/setup-qemu-action@master
95-
with:
96-
platforms: all
97-
-
98-
name: Set up Docker Buildx
99-
uses: docker/setup-buildx-action@v1
100-
-
101-
name: Build
102-
run: |
103-
chmod +x compile_linux.sh
104-
./compile_linux.sh 386 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }}
105-
- name: Export distribution
106-
uses: actions/upload-release-asset@v1
107-
env:
108-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
109-
with:
110-
upload_url: ${{ needs.create-release.outputs.upload_url }}
111-
asset_path: out/binary_distrib.tar.gz
112-
asset_name: linux-i386.tar.gz
113-
asset_content_type: application/octet-stream
114-
115-
11688
build-linux-arm64:
11789
runs-on: ubuntu-latest
11890
needs: create-release

.github/workflows/build-linux-i386.yml

-37
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<table>
1313
<tr>
1414
<td width="12%"></td>
15-
<td width="22%"><a href="#"><img src="https://simpleicons.org/icons/linux.svg" alt="linux" width="32" height="32"></a><br/><b>amd64, arm64, i386 & arm</b></td>
15+
<td width="22%"><a href="#"><img src="https://simpleicons.org/icons/linux.svg" alt="linux" width="32" height="32"></a><br/><b>amd64, arm64 & arm</b></td>
1616
<td width="22%"><a href="#"><img src="https://simpleicons.org/icons/windows.svg" alt="windows" width="32" height="32"></a><br/><b>amd64 & i386</b></td>
1717
<td width="22%"><a href="#"><img src="https://simpleicons.org/icons/windows.svg" alt="windows" width="32" height="32"></a><br/><b>arm64</b></td>
1818
<td width="22%"><a href="#"><img src="https://simpleicons.org/icons/apple.svg" alt="apple" width="32" height="32"></a><br/><b>amd64 & arm64</b></td>

compile_linux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ $# -lt 2 ] || [ $# -eq 3 ]
44
then
55
echo "Usage: ./compile_linux.sh <architecture> <buildType> [<gitrepo> <gitref>]"
66
echo ""
7-
echo "architecture: the target architecture to build for. Architectures are either arm64, arm/v6, 386 or amd64."
7+
echo "architecture: the target architecture to build for. Architectures are either arm64, arm/v6 or amd64."
88
echo "buildType: either Release or Debug"
99
echo "gitrepo: git repository url to clone"
1010
echo "gitref: the git commit id to pull"

release_gen/create_release_info.sh

-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ mv LICENSE.txt ../LICENSE
7676
echo " \"actions_url\": \"$3\", "
7777
echo " \"actions_number\": \"$4\", "
7878
echo " \"filename_linux_amd64\": \"linux-amd64.tar.gz\", "
79-
echo " \"filename_linux_i386\": \"linux-i386.tar.gz\", "
8079
echo " \"filename_linux_arm64\": \"linux-arm64.tar.gz\", "
8180
echo " \"filename_linux_arm\": \"linux-arm.tar.gz\", "
8281
echo " \"filename_windows_amd64\": \"windows-amd64.tar.gz\", "
@@ -88,7 +87,6 @@ mv LICENSE.txt ../LICENSE
8887
echo " \"release_tag\": \"$real_release_tag\","
8988
echo " \"release_url\": \"https://github.com/$5/releases/tag/$release_tag\", "
9089
echo " \"download_url_linux_amd64\": \"https://github.com/$5/releases/download/$release_tag/linux-amd64.tar.gz\", "
91-
echo " \"download_url_linux_i386\": \"https://github.com/$5/releases/download/$release_tag/linux-i386.tar.gz\", "
9290
echo " \"download_url_linux_arm64\": \"https://github.com/$5/releases/download/$release_tag/linux-arm64.tar.gz\", "
9391
echo " \"download_url_linux_arm\": \"https://github.com/$5/releases/download/$release_tag/linux-arm.tar.gz\", "
9492
echo " \"download_url_windows_amd64\": \"https://github.com/$5/releases/download/$release_tag/windows-amd64.tar.gz\", "

scripts/run_linux.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ chmod +x compile.sh
5959
if [ ${TARGETARCH} == 'amd64' ] || [ ${TARGETARCH} == 'arm64' ]; then
6060
./compile.sh linux64
6161
elif [ ${TARGETARCH} == '386' ]; then
62-
./compile.sh linux32
62+
echo "386 is no longer supported since chromium 104"
63+
exit 1
6364
else
6465
echo "Can not compile java classes under arm/v6 currently. So we copy from prebuild directory."
6566
mkdir -p /jcef/out/linux32

0 commit comments

Comments
 (0)