Skip to content

Commit b95c428

Browse files
committed
Try another version
1 parent ad93f2c commit b95c428

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

debian-11-arm/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM debian:11
1+
FROM debian:trixie
22

3-
ARG v8_version=11.9.169.7
3+
ARG v8_version=13.6.233.17
44
ENV version=$v8_version
55

66
ENV target arm64.static

debian-11-ppc64/Dockerfile

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,28 @@
1-
FROM ppc64le/debian:12
1+
FROM ppc64le/ubuntu:latest
22

3-
ARG v8_version=11.9.169.7
3+
ARG v8_version=13.6.233.17
44
ENV version=$v8_version
55

66
ENV target ppc64.static
77
ENV GYP_GENERATORS ninja
88
ENV PATH="/depot_tools:${PATH}"
99
ENV pkgdir /package
1010

11-
##RUN sed -i.bak 's@http://deb.debian.org@http://archive.debian.org@g' /etc/apt/sources.list
12-
1311
RUN apt-get update -y && \
1412
apt-get upgrade -y && \
15-
apt-get install -y curl python3 python3-httplib2 xz-utils git g++ g++-powerpc64le-linux-gnu pkg-config libglib2.0-dev &&\
13+
apt-get install -y curl python3 python3-httplib2 python3-distutils-extra xz-utils git g++ g++-powerpc64le-linux-gnu pkg-config libglib2.0-dev &&\
1614
ln -s /usr/bin/python3 /usr/bin/python
1715

1816
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools
1917

2018
ENV VPYTHON_BYPASS="manually managed python not supported by chrome operations"
2119
ENV GCLIENT_PY3=1
2220

23-
RUN yes | fetch --nohooks v8
21+
RUN yes | fetch v8
2422

2523
WORKDIR /v8
2624

27-
RUN git branch build ${version} &&\
28-
git checkout build &&\
29-
gclient sync --nohooks -D --force --reset && \
25+
RUN gclient sync -D --force --reset && \
3026
gclient sync --revision ${version}
3127

3228
RUN gn gen ${target} -vv --fail-on-unused-args \

0 commit comments

Comments
 (0)