ci: add cmake
This commit is contained in:
parent
2949429354
commit
0989c091be
2 changed files with 5 additions and 2 deletions
|
|
@ -13,7 +13,10 @@ jobs:
|
|||
uses: actions/checkout@v6
|
||||
|
||||
- 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
|
||||
uses: docker/setup-buildx-action@v4
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
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 - \
|
||||
&& apt-get install -y nodejs \
|
||||
&& npm install -g npm@latest \
|
||||
|
|
|
|||
Loading…
Reference in a new issue