Skip to content

Commit a619fe8

Browse files
committed
action fixes
1 parent a5c52a3 commit a619fe8

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/build-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
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]

build-containers/Dockerfile.debian

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,20 @@ ARG gcc_install
66

77
FROM 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+
2025
WORKDIR /usr/app/

0 commit comments

Comments
 (0)