add debian build to cicd, clean up labels
This commit is contained in:
parent
1dc7b58212
commit
b29b376414
@ -7,27 +7,37 @@ jobs:
|
|||||||
container:
|
container:
|
||||||
image: archlinux:multilib-devel
|
image: archlinux:multilib-devel
|
||||||
steps:
|
steps:
|
||||||
- name: Install things
|
- name: Install dependencies
|
||||||
run: pacman -Sy --noconfirm sdl2 mesa-utils exiv2 cmake nodejs git && pacman -Syu --noconfirm
|
run: pacman -Sy --noconfirm sdl2 mesa-utils exiv2 cmake nodejs git && pacman -Syu --noconfirm
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Run ls
|
- name: Run ls
|
||||||
run: ls
|
run: ls
|
||||||
- name: Generate
|
- name: Generate build files
|
||||||
run: cmake .
|
run: cmake .
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build .
|
run: cmake --build .
|
||||||
run-build-ubuntu:
|
run-build-ubuntu:
|
||||||
container:
|
container:
|
||||||
image: ubuntu:latest
|
image: ubuntu:24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Install things
|
- name: Install dependencies
|
||||||
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs ca-certificates git
|
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs ca-certificates git
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Run ls
|
- name: Generate build files
|
||||||
run: ls
|
run: cmake .
|
||||||
- name: Generate
|
- name: Build
|
||||||
|
run: cmake --build .
|
||||||
|
run-build-debian:
|
||||||
|
container:
|
||||||
|
image: debian:bookworm
|
||||||
|
steps:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: apt update && apt install --no-install-recommends -y build-essential cmake libsdl2-dev libexiv2-dev mesa-utils nodejs ca-certificates git
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Generate build files
|
||||||
run: cmake .
|
run: cmake .
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build .
|
run: cmake --build .
|
||||||
|
Loading…
Reference in New Issue
Block a user