flags
This commit is contained in:
parent
a4459af174
commit
686d68ce27
@ -3,6 +3,20 @@ run-name: ${{ gitea.actor }} is building tview
|
|||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
run-build-arch:
|
||||||
|
container:
|
||||||
|
image: archlinux:multilib-devel
|
||||||
|
steps:
|
||||||
|
- name: Install things
|
||||||
|
run: pacman -Sy --noconfirm 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 .
|
||||||
run-build-ubuntu:
|
run-build-ubuntu:
|
||||||
container:
|
container:
|
||||||
image: ubuntu:latest
|
image: ubuntu:latest
|
||||||
@ -17,17 +31,3 @@ jobs:
|
|||||||
run: cmake .
|
run: cmake .
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --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 .
|
|
||||||
|
Loading…
Reference in New Issue
Block a user