mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-17 11:10:18 +00:00
Rename workflow from Ubuntu to Debian build
This commit is contained in:
committed by
GitHub
parent
77b1abb521
commit
9ebb998c64
41
.github/workflows/debian-build.yml
vendored
Normal file
41
.github/workflows/debian-build.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
name: Debian Build
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
debian_build:
|
||||||
|
runs-on: ubuntu-24.04
|
||||||
|
container:
|
||||||
|
image: debian:bookworm
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install base tooling (git + deps)
|
||||||
|
run: |
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y --no-install-recommends \
|
||||||
|
git ca-certificates \
|
||||||
|
build-essential pkg-config meson ninja-build \
|
||||||
|
libcanberra-dev libdbus-glib-1-dev libglib2.0-dev libgtk2.0-dev \
|
||||||
|
libluajit-5.1-dev libpci-dev libperl-dev libssl-dev \
|
||||||
|
python3-dev python3-cffi mono-devel desktop-file-utils
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
|
||||||
|
- name: Configure
|
||||||
|
run: meson setup build -Dtext=true -Dtheme-manager=true -Dauto_features=enabled
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: ninja -C build
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: ninja -C build test
|
||||||
|
|
||||||
|
- name: Install
|
||||||
|
run: ninja -C build install
|
||||||
32
.github/workflows/ubuntu-build.yml
vendored
32
.github/workflows/ubuntu-build.yml
vendored
@@ -1,32 +0,0 @@
|
|||||||
name: Ubuntu Build
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
ubuntu_build:
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y meson libcanberra-dev libdbus-glib-1-dev libglib2.0-dev libgtk2.0-dev libluajit-5.1-dev libpci-dev libperl-dev libssl-dev python3-dev python3-cffi mono-devel desktop-file-utils
|
|
||||||
|
|
||||||
- name: Configure
|
|
||||||
run: meson build -Dtext=true -Dtheme-manager=true -Dauto_features=enabled
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: ninja -C build
|
|
||||||
|
|
||||||
- name: Test
|
|
||||||
run: ninja -C build test
|
|
||||||
|
|
||||||
- name: Install
|
|
||||||
run: sudo ninja -C build install
|
|
||||||
Reference in New Issue
Block a user