tildefriends/.gitea/workflows/build.yaml

16 lines
376 B
YAML
Raw Normal View History

2024-07-16 22:30:36 -04:00
name: Build Tilde Friends
2024-07-24 13:50:48 -04:00
run-name: ${{ gitea.actor }} running 🚀
2024-07-16 22:20:45 -04:00
on: [push]
jobs:
2024-07-16 22:30:36 -04:00
Build-All:
2024-07-16 22:20:45 -04:00
runs-on: ubuntu-latest
steps:
2024-07-24 13:50:48 -04:00
- name: check out code
2024-07-16 22:20:45 -04:00
uses: actions/checkout@v4
2024-07-16 22:32:26 -04:00
with:
submodules: true
2024-07-24 13:04:52 -04:00
- run: sudo apt update && sudo apt install -y doxygen mingw-w64
2024-07-24 12:56:27 -04:00
- run: make all -j`nproc` docs
- run: docker build .