Compare commits
5 commits
64bdf1c48a
...
10f3f33048
Author | SHA1 | Date | |
---|---|---|---|
10f3f33048 | |||
6900c77a32 | |||
469df7bfcd | |||
cac2b014c5 | |||
7e6110fbfe |
3 changed files with 31 additions and 2 deletions
27
.woodpecker.yml
Normal file
27
.woodpecker.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
clone:
|
||||||
|
git:
|
||||||
|
image: woodpeckerci/plugin-git
|
||||||
|
settings:
|
||||||
|
depth: 1
|
||||||
|
lfs: false
|
||||||
|
|
||||||
|
pipeline:
|
||||||
|
zig-compiler:
|
||||||
|
image: alpine
|
||||||
|
- echo "Downloading dependencies..."
|
||||||
|
- apk add curl xz
|
||||||
|
- echo "Downloading zig binary..."
|
||||||
|
- curl https://ziglang.org/download/0.10.0/zig-linux-x86_64-0.10.0.tar.xz | xz -d | tar -x
|
||||||
|
|
||||||
|
format:
|
||||||
|
image: alpine
|
||||||
|
- echo "Checking formatting..."
|
||||||
|
- ./zig-linux-x86_64-0.10.0/zig fmt --check src/ tests/ build.zig
|
||||||
|
|
||||||
|
unit-tests:
|
||||||
|
image: alpine
|
||||||
|
commands:
|
||||||
|
- echo "Downloading dependencies..."
|
||||||
|
- apk add sqlite sqlite-dev libpq libpq-dev
|
||||||
|
- echo "Running unit tests..."
|
||||||
|
- ./zig-linux-x86_64-0.10.0/zig build unit
|
|
@ -1,4 +1,6 @@
|
||||||
# Untitled Social Network server
|
# fediglam
|
||||||
|
[![status-badge](https://ci.heartles.xyz/api/badges/heartles/fediglam/status.svg)](https://ci.heartles.xyz/heartles/fediglam)
|
||||||
|
A (soon to be federated) social networking server
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
### Requirements
|
### Requirements
|
||||||
|
|
Loading…
Reference in a new issue