tview/.gitea/workflows/run_build.yaml

20 lines
492 B
YAML
Raw Normal View History

2024-06-16 10:48:57 -04:00
name: Run Build
run-name: ${{ gitea.actor }} is building tview
on: [push]
jobs:
run-builds:
container:
image: ubuntu:latest
2024-06-16 10:52:18 -04:00
steps:
2024-06-16 10:53:17 -04:00
- name: Install things
2024-06-16 10:55:51 -04:00
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs
2024-06-16 10:52:18 -04:00
- name: Check out repository code
uses: actions/checkout@v4
- name: Run ls
run: ls
- name: Generate
run: cmake .
- name: Build
run: cmake --build .