ci: add build and unit test pipeline #17

Merged
TapTap merged 9 commits from actions into main 2026-07-18 15:52:07 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit ed7f8ee56e - Show all commits
+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:v3
container: gitea.tap-tap.win/taptap/fastsync-ci:v4
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 make libzstd-dev git ca-certificates curl && \
gcc g++ make libc6-dev cmake 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/*