Skip to content

Commit ee1d50f

Browse files
committed
Fix some warnings
1 parent 9d36932 commit ee1d50f

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
distro: [ 'centos-8', 'debian-11', 'debian-11-arm', 'debian-11-ppc64', 'debian-12-libcxx', 'alpine' ]
16+
distro: [ 'centos-8', 'debian-11', 'debian-11-arm', 'debian-12-libcxx', 'alpine' ]
1717
version: [ '11.9.169.7' ]
1818

1919
steps:

centos-8/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM rockylinux/rockylinux:8
33
ARG v8_version=11.9.169.7
44
ENV version=$v8_version
55

6-
ENV target x86.static
7-
ENV GYP_GENERATORS ninja
6+
ENV target=x86.static
7+
ENV GYP_GENERATORS=ninja
88
ENV PATH="/depot_tools:${PATH}"
9-
ENV pkgdir /package
9+
ENV pkgdir=/package
1010

1111
RUN yum update -y && \
1212
yum upgrade -y && \

debian-11-arm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM debian:11
33
ARG v8_version=11.9.169.7
44
ENV version=$v8_version
55

6-
ENV target arm64.static
7-
ENV GYP_GENERATORS ninja
6+
ENV target=arm64.static
7+
ENV GYP_GENERATORS=ninja
88
ENV PATH="/depot_tools:${PATH}"
9-
ENV pkgdir /package
9+
ENV pkgdir=/package
1010

1111
RUN apt-get update -y && \
1212
apt-get upgrade -y && \

debian-11/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM debian:11
33
ARG v8_version=11.9.169.7
44
ENV version=$v8_version
55

6-
ENV target x86.static
7-
ENV GYP_GENERATORS ninja
6+
ENV target=x86.static
7+
ENV GYP_GENERATORS=ninja
88
ENV PATH="/depot_tools:${PATH}"
9-
ENV pkgdir /package
9+
ENV pkgdir=/package
1010

1111
RUN apt-get update -y && \
1212
apt-get upgrade -y && \

debian-12-libcxx/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM debian:bookworm
33
ARG v8_version=11.9.169.7
44
ENV version=$v8_version
55

6-
ENV target x86.static
7-
ENV GYP_GENERATORS ninja
6+
ENV target=x86.static
7+
ENV GYP_GENERATORS=ninja
88
ENV PATH="/depot_tools:${PATH}"
9-
ENV pkgdir /package
9+
ENV pkgdir=/package
1010

1111
RUN apt-get update -y && \
1212
apt-get upgrade -y && \

debian-9/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ FROM debian:9
33
ARG v8_version=11.9.169.7
44
ENV version=$v8_version
55

6-
ENV target x86.static
7-
ENV GYP_GENERATORS ninja
6+
ENV target=x86.static
7+
ENV GYP_GENERATORS=ninja
88
ENV PATH="/depot_tools:${PATH}"
9-
ENV pkgdir /package
9+
ENV pkgdir=/package
1010

1111
RUN apt-get update -y && \
1212
apt-get upgrade -y && \

0 commit comments

Comments
 (0)