File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3838 CI : true
3939
4040 build-windows-x86 :
41- runs-on : windows-2019
41+ runs-on : windows-2022
4242 strategy :
4343 matrix :
4444 node_version : [18]
Original file line number Diff line number Diff line change @@ -6,15 +6,20 @@ ARG gcc_install
66
77FROM node:${node_version}-${version}
88
9- RUN echo "deb http://deb.debian.org/debian bullseye-backports main" >> /etc/apt/sources.list && \
10- apt update && \
9+ RUN apt update && \
1110 apt install -y --no-install-recommends \
1211 build-essential \
1312 libssl-dev \
1413 ninja-build \
14+ wget \
1515 ${gcc_install} && \
16- apt install -y --no-install-recommends -t bullseye-backports cmake && \
1716 apt clean && \
1817 rm -rf /var/lib/apt/lists/*
1918
19+ # CMake
20+ RUN wget https://github.com/Kitware/CMake/releases/download/v3.22.3/cmake-3.22.3-linux-x86_64.sh && \
21+ chmod +x cmake-3.22.3-linux-x86_64.sh && \
22+ ./cmake-3.22.3-linux-x86_64.sh --skip-license --prefix=/usr/local && \
23+ rm cmake-3.22.3-linux-x86_64.sh
24+
2025WORKDIR /usr/app/
You can’t perform that action at this time.
0 commit comments