-
Notifications
You must be signed in to change notification settings - Fork 3
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 #296 from kalev/add-server-uri-to-config-file
Make the server URI configurable in the config file
- Loading branch information
Showing
18 changed files
with
283 additions
and
105 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,43 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
fedora: | ||
runs-on: ubuntu-latest | ||
container: fedora:latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check we are on Fedora | ||
run: cat /etc/os-release | ||
- name: Update | ||
run: | | ||
sudo dnf -y update | ||
- name: Enable kalev/metrics copr | ||
run: | | ||
sudo dnf -y install 'dnf-command(copr)' | ||
sudo dnf -y copr enable kalev/metrics | ||
- name: Install dependencies | ||
run: | | ||
sudo dnf -y install \ | ||
gcc \ | ||
meson \ | ||
'pkgconfig(eosmetrics-0)' \ | ||
'pkgconfig(gio-unix-2.0)' \ | ||
'pkgconfig(glib-2.0)' \ | ||
'pkgconfig(gobject-2.0)' \ | ||
'pkgconfig(libsoup-3.0)' \ | ||
'pkgconfig(ostree-1)' \ | ||
'pkgconfig(polkit-gobject-1)' \ | ||
'pkgconfig(sqlite3)' \ | ||
'pkgconfig(systemd)' \ | ||
'pkgconfig(uuid)' \ | ||
python3-dbus \ | ||
python3-dbusmock \ | ||
${NULL+} | ||
- name: Meson setup | ||
run: meson setup _build | ||
- name: Build | ||
run: ninja -C _build | ||
- name: Run tests | ||
run: meson test -C _build |
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.