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

CI: Switch to flatter #673

Merged
merged 2 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,16 @@ name: CI
jobs:
testing:
runs-on: ubuntu-latest
name: testing
container:
image: ghcr.io/andyholmes/flatter/gnome:46
options: --privileged
steps:
- uses: actions/checkout@master
- uses: tchx84/gtk-apps-testing-docker-action@gjs
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build
uses: andyholmes/flatter@main
with:
files: com.github.tchx84.Flatseal.json
run-tests: true
12 changes: 12 additions & 0 deletions com.github.tchx84.Flatseal.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@
"*.a"
],
"modules": [
{
"name": "jasmine-gjs",
"buildsystem": "meson",
"cleanup": ["*"],
"sources": [
{
"type": "git",
"url": "https://github.com/ptomato/jasmine-gjs.git",
"commit": "c6aa28b3a3b16a3abb53e32825d83f836a2fed42"
}
]
},
{
"name": "flatseal",
"buildsystem": "meson",
Expand Down