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
- 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