Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework Application Class #702

Merged
merged 13 commits into from
Feb 28, 2023
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ jobs:
- name: Install Dependencies
run: |
apt update
apt install -y desktop-file-utils gettext libgranite-dev libgtk-3-dev libhandy-1-dev libvte-2.91-dev libxml2-utils meson valac
apt install -y desktop-file-utils gettext libgranite-dev libgtk-3-dev libhandy-1-dev libvte-2.91-dev libxml2-utils meson valac xvfb
- name: Build
run: |
meson build
ninja -C build
xvfb-run -a -s "-screen 0 1024x768x24 -noreset" ninja -C build test
ninja -C build install

lint:
Expand Down
2 changes: 2 additions & 0 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ install_data(

terminal_gresource = gnome.compile_resources('gresource', meson.project_name() + '.gresource.xml')

test_schemas = gnome.compile_schemas(depend_files: meson.project_name() + '.gschema.xml', build_by_default: false)

desktop_file_validate = find_program('desktop-file-validate', required: false)
if desktop_file_validate.found()
test(
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project(
'io.elementary.terminal',
'vala', 'c',
version: '6.1.1',
meson_version: '>=0.58'
meson_version: '>=0.60'
)

valac = meson.get_compiler('vala')
Expand Down
Loading