Compare commits

...

5 Commits

Author SHA1 Message Date
ac1eb1eed8 try build
Some checks failed
Run Build / Run build (push) Failing after 0s
2024-06-16 10:48:57 -04:00
3dd8f101a9 get proper main.cpp 2024-06-16 10:29:51 -04:00
01e85f5dc8 test cicd 2024-06-16 10:28:43 -04:00
6f1f82889e 99 percent complete 2024-06-16 10:28:41 -04:00
dd6c006a34 image rotation 2024-06-16 10:28:13 -04:00

View File

@ -0,0 +1,20 @@
name: Run Build
run-name: ${{ gitea.actor }} is building tview
on: [push]
jobs:
run-builds:
name: Run build
container:
image: ubuntu:latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Run ls
run: ls
- name: Install things
run: apt update && apt install build-essential cmake libsdl2-dev libexiv2-dev mesa-utils
- name: Generate
run: cmake .
- name: Build
run: cmake --build .