Merge pull request #116 from MightyCreak/flatpak-ci

Add Flatpak CI
This commit is contained in:
Creak 2021-11-20 13:33:09 -05:00 committed by GitHub
commit 675e29c530
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 21 deletions

View File

@ -10,3 +10,6 @@ trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2

View File

@ -16,31 +16,46 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Pylint
uses: cclauss/GitHub-Action-for-pylint@master
with:
args: "pylint src/vcs/"
- name: Pylint
uses: cclauss/GitHub-Action-for-pylint@master
with:
args: "pylint src/vcs/"
build:
meson-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: sudo apt-get -y install appstream appstream-util desktop-file-utils gettext
- name: Install dependencies
run: sudo apt-get -y install appstream appstream-util desktop-file-utils gettext
- name: Meson build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
- name: Meson build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
- name: Meson test
uses: BSFishy/meson-build@v1.0.3
with:
action: test
- name: Meson test
uses: BSFishy/meson-build@v1.0.3
with:
action: test
flatpak-build-test:
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-40
options: --privileged
steps:
- uses: actions/checkout@v2
- name: Flatpak builder
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v3
with:
bundle: "diffuse.flatpak"
manifest-path: "io.github.mightycreak.Diffuse.yml"
cache-key: flatpak-builder-${{ github.sha }}
run-tests: "true"