Skip to content

Commit

Permalink
Add gitea workflows for build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackarain committed Aug 1, 2024
1 parent 5125710 commit e00e2fe
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitea/workflows/Build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build

on: [push]

jobs:
Ubuntu-latest:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v4
- name: Build proxy
run: |
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_BUILD_WERROR=OFF -DENABLE_SNMALLOC_STATIC=ON -G Ninja
cmake --build build --config Release

0 comments on commit e00e2fe

Please sign in to comment.