try no docker #45
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
name: Portal CI | |
on: [push, pull_request] | |
env: | |
TESTS_TIMEOUT: 10 # in minutes | |
jobs: | |
check: | |
name: CI Build | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
compiler: ['gcc', 'clang'] | |
sanitizer: ['address'] | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc clang ca-certificates \ | |
desktop-file-utils fuse3 gettext git gnome-desktop-testing \ | |
gtk-doc-tools libcap2-bin libflatpak-dev libfontconfig1-dev \ | |
libfuse3-dev libgdk-pixbuf-2.0-dev libgeoclue-2-dev libglib2.0-dev \ | |
libjson-glib-dev libpipewire-0.3-dev libportal-dev libsystemd-dev \ | |
libtool llvm python3-gi shared-mime-info meson python3-pytest \ | |
python3-pytest-xdist python3-dbusmock python3-dbus | |
- name: Configure environment | |
run: | | |
git config --global --add safe.directory $GITHUB_WORKSPACE | |
echo XDG_DATA_DIRS=$GITHUB_WORKSPACE/tests/share:/usr/local/share:/usr/share | tee -a $GITHUB_ENV | |
- name: Check out xdg-desktop-portal | |
uses: actions/checkout@v4 | |
- name: Build xdg-desktop-portal | |
run: | | |
meson setup _build $MESON_OPTIONS | |
meson compile -C _build | |
env: | |
MESON_OPTIONS: -Dinstalled-tests=true -Dpytest=enabled -Db_sanitize=${{ matrix.sanitizer }} | |
- name: Run xdg-desktop-portal tests | |
run: timeout --signal=KILL -v ${TESTS_TIMEOUT}m meson test -C _build | |
- name: Install xdg-desktop-portal | |
run: meson install -C _build | |
- name: Run xdg-desktop-portal installed-tests | |
run: | | |
test -n "$(gnome-desktop-testing-runner -l xdg-desktop-portal)" | |
gnome-desktop-testing-runner --report-directory installed-test-logs/ \ | |
-t $((TESTS_TIMEOUT * 60)) xdg-desktop-portal | |
- name: Create dist tarball | |
run: | | |
ls -la | |
timeout --signal=KILL -v ${TESTS_TIMEOUT}m meson dist -C _build | |
- name: Upload test logs | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() | |
with: | |
name: test logs | |
path: | | |
tests/*.log | |
test-*.log | |
installed-test-logs/ | |
builddir/meson-logs/testlog.txt |