ci: add make to Docker image, use v3 tag
CI / build-and-test (push) Failing after 10s

This commit is contained in:
2026-07-18 15:27:35 +02:00
parent cc09bedc07
commit 8c7ebbfe32
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
container: gitea.tap-tap.win/taptap/fastsync-ci:v2
container: gitea.tap-tap.win/taptap/fastsync-ci:v3
steps:
- name: Checkout
uses: actions/checkout@v4
+1 -1
View File
@@ -1,6 +1,6 @@
FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc cmake libzstd-dev git ca-certificates curl && \
gcc cmake make libzstd-dev git ca-certificates curl && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y --no-install-recommends nodejs && \
rm -rf /var/lib/apt/lists/*