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 5 additions and 5 deletions
Showing only changes of commit 9130ee4b03 - Show all commits
+1 -5
View File
@@ -5,15 +5,11 @@ on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
container: gitea.tap-tap.win/taptap/fastsync-ci:latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends gcc cmake libzstd-dev
- name: Configure
run: cmake -B build -S .
+4
View File
@@ -0,0 +1,4 @@
FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc cmake libzstd-dev git ca-certificates && \
rm -rf /var/lib/apt/lists/*