CI: fix flatpak action (#281)
* CI: fix flatpak action * Flatpak: update manifest include libhandy & fix the module's type
This commit is contained in:
parent
af1d8a4a86
commit
1409510a57
|
@ -6,9 +6,9 @@ name: CI
|
|||
jobs:
|
||||
flatpak-builder:
|
||||
name: "Flatpak Builder"
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: bilelmoussaoui/flatpak-github-actions:gnome-3-38
|
||||
image: bilelmoussaoui/flatpak-github-actions:gnome-3.38
|
||||
options: --privileged
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -16,3 +16,4 @@ jobs:
|
|||
with:
|
||||
bundle: "com.github.bleakgrey.tootle.flatpak"
|
||||
manifest-path: "com.github.bleakgrey.tootle.json"
|
||||
run-tests: "true"
|
||||
|
|
|
@ -26,14 +26,30 @@
|
|||
"*.a"
|
||||
],
|
||||
"modules": [
|
||||
{
|
||||
"name": "libhandy",
|
||||
"buildsystem": "meson",
|
||||
"config-opts": [
|
||||
"-Dtests=false",
|
||||
"-Dexamples=false",
|
||||
"-Dglade_catalog=disabled"
|
||||
],
|
||||
"sources": [
|
||||
{
|
||||
"type": "archive",
|
||||
"url": "https://ftp.acc.umu.se/pub/GNOME/sources/libhandy/1.0/libhandy-1.0.3.tar.xz",
|
||||
"sha256": "559bb3acc2c362488917eb72ed25bdc181f4ae26ac94d177634cc5d34c867f7a"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "tootle",
|
||||
"builddir": true,
|
||||
"buildsystem": "meson",
|
||||
"sources": [
|
||||
{
|
||||
"type": "git",
|
||||
"url": "https://github.com/bleakgrey/tootle.git"
|
||||
"type": "dir",
|
||||
"path": "."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue