Add CI/Automated Build #3

Merged
dubey merged 21 commits from cicd into main 2024-06-16 16:37:08 -04:00
Showing only changes of commit a4459af174 - Show all commits

View File

@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} is building tview
on: [push]
jobs:
run-builds:
run-build-ubuntu:
container:
image: ubuntu:latest
steps:
@ -17,3 +17,17 @@ jobs:
run: cmake .
- name: Build
run: cmake --build .
run-build-arch:
container:
image: archlinux:multilib-devel
steps:
- name: Install things
run: pacman -Sy --no-confirm sdl2 mesa-utils exiv2 cmake nodejs git
- name: Check out repository code
uses: actions/checkout@v4
- name: Run ls
run: ls
- name: Generate
run: cmake .
- name: Build
run: cmake --build .