diff --git a/.gitea/workflows/run_build.yaml b/.gitea/workflows/run_build.yaml index 9b1584c..e3772b9 100644 --- a/.gitea/workflows/run_build.yaml +++ b/.gitea/workflows/run_build.yaml @@ -7,27 +7,37 @@ jobs: container: image: archlinux:multilib-devel steps: - - name: Install things + - name: Install dependencies run: pacman -Sy --noconfirm sdl2 mesa-utils exiv2 cmake nodejs git && pacman -Syu --noconfirm - name: Check out repository code uses: actions/checkout@v4 - name: Run ls run: ls - - name: Generate + - name: Generate build files run: cmake . - name: Build run: cmake --build . run-build-ubuntu: container: - image: ubuntu:latest + image: ubuntu:24.04 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 - name: Check out repository code uses: actions/checkout@v4 - - name: Run ls - run: ls - - name: Generate + - name: Generate build files + run: cmake . + - 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 . - name: Build run: cmake --build .