tview/.gitea/workflows/run_build.yaml
Tanishq Dubey 9e33c72484
Some checks failed
Run Build / run-builds (push) Failing after 4s
indentation
2024-06-16 10:52:18 -04:00

20 lines
458 B
YAML

name: Run Build
run-name: ${{ gitea.actor }} is building tview
on: [push]
jobs:
run-builds:
container:
image: ubuntu:latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- 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 .