ci: add cmake

This commit is contained in:
kittentm 2026-04-22 04:11:27 +02:00
commit 0989c091be
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
2 changed files with 5 additions and 2 deletions

View file

@ -13,7 +13,10 @@ jobs:
uses: actions/checkout@v6 uses: actions/checkout@v6
- name: install docker??? - name: install docker???
run: apt update && apt install wget -y && wget "https://download.docker.com/linux/debian/dists/bookworm/pool/stable/amd64/docker-ce-cli_29.2.1-1~debian.12~bookworm_amd64.deb" && dpkg --force-confold -i "docker-ce-cli_29.2.1-1~debian.12~bookworm_amd64.deb" run: |
apt update && apt install wget cmake -y && \
wget "https://download.docker.com/linux/debian/dists/bookworm/pool/stable/amd64/docker-ce-cli_29.2.1-1~debian.12~bookworm_amd64.deb" && \
dpkg --force-confold -i "docker-ce-cli_29.2.1-1~debian.12~bookworm_amd64.deb"
- name: set up Docker Buildx - name: set up Docker Buildx
uses: docker/setup-buildx-action@v4 uses: docker/setup-buildx-action@v4

View file

@ -1,6 +1,6 @@
FROM python:3.14-slim FROM python:3.14-slim
RUN apt-get update && apt-get install -y curl build-essential \ RUN apt-get update && apt-get install -y curl build-essential cmake \
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs \ && apt-get install -y nodejs \
&& npm install -g npm@latest \ && npm install -g npm@latest \