-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from sailfishos/update_125
Update to 1.2.5. JB#52079
- Loading branch information
Showing
308 changed files
with
55,168 additions
and
85,090 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# See https://editorconfig.org/ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
[*.{c,h}] | ||
indent_style = tab | ||
indent_size = 8 | ||
|
||
[*.cpp] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.sh] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.xml] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[meson.build] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Build and Test | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build_and_test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
distro: | ||
- fedora | ||
- debian | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker build -t packagekit-${{ matrix.distro }} -f tests/ci/Dockerfile-${{ matrix.distro }} . | ||
- run: docker run -t -v `pwd`:/build packagekit-${{ matrix.distro }} ./tests/ci/build_and_test.sh -Dpackaging_backend=dnf | ||
if: ${{ matrix.distro == 'fedora' }} | ||
- run: docker run -t -v `pwd`:/build packagekit-${{ matrix.distro }} ./tests/ci/build_and_test.sh -Dpackaging_backend=aptcc | ||
if: ${{ matrix.distro == 'debian' }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,17 @@ Richard Hughes <[email protected]> | |
Tom Parker <[email protected]> | ||
Ken VanDine <[email protected]> | ||
Matthias Klumpp <[email protected]> | ||
Neal Gompa <[email protected]> | ||
|
||
Backend: alpm | ||
Aleix Pol i Gonzàlez <[email protected]> | ||
Fabien Bourigault <[email protected]> | ||
Jonathan Conder <[email protected]> | ||
|
||
Backend: dnf | ||
Richard Hughes <[email protected]> | ||
Neal Gompa <[email protected]> | ||
|
||
Backend: pisi | ||
S.Çağlar Onur <[email protected]> | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.