Stefan Dirsch
a8e4d8adaf
had 1.1.7 before without noticing it ... - supersedes * 0001-egl-wayland-bump-version-to-1.1.17.patch * 0002-Fix-the-include-path-for-drm_fourcc.h.patch * 0003-Fix-a-declaration-after-code.patch * 0004-egl-swap-provide-damage-rectangles-to-wl_surface.patch * 0005-Use-INT32_MAX-for-wl_surface_damage.patch * 0006-egl-wayland-Accept-device-name-from-either-wl_drm-or.patch * 0007-egl-wayland-fix-device-name-case-where-only-wl_drm-e.patch * 0008-Add-ICD-json-file.patch * 0009-egl-wayland-Fix-roundtrip-eating-wl_drm-events-in-ge.patch * 0001-egl-wayland-enable-CI-with-github-actions.patch * 0002-egl-wayland-Fix-use-after-free-in-library-teardown.patch * 0003-egl-wayland-Handle-failure-to-acquire-image-in-wlEgl.patch * 0001-Fix-a-segfault-in-wlEglCreatePlatformWindowSurfaceHo.patch * 0002-Check-for-a-duplicate-wl_surface-in-wlEglCreatePlatf.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/libnvidia-egl-wayland?expand=0&rev=35
109 lines
3.8 KiB
Diff
109 lines
3.8 KiB
Diff
From 40e835f197178e7e4387a042acc8f1dc42f810ee Mon Sep 17 00:00:00 2001
|
|
From: Austin Shafer <ashafer@nvidia.com>
|
|
Date: Wed, 9 Oct 2024 14:53:52 -0400
|
|
Subject: [PATCH 1/3] egl-wayland: enable CI with github actions
|
|
|
|
This enables CI for github actions builds, aimed for helping verify
|
|
new pull requests. This adds tests for the meson and autotools builds
|
|
on ubuntu 24.04. Other distros are apparently not supported by default
|
|
so we aren't able to expand testing this way.
|
|
---
|
|
.github/workflows/arch-build.yml | 16 ++++++++++++++++
|
|
.github/workflows/autoconf-build.yml | 14 ++++++++++++++
|
|
.github/workflows/meson-build.yml | 14 ++++++++++++++
|
|
.github/workflows/meson-llvm-build.yml | 17 +++++++++++++++++
|
|
4 files changed, 61 insertions(+)
|
|
create mode 100644 .github/workflows/arch-build.yml
|
|
create mode 100644 .github/workflows/autoconf-build.yml
|
|
create mode 100644 .github/workflows/meson-build.yml
|
|
create mode 100644 .github/workflows/meson-llvm-build.yml
|
|
|
|
diff --git a/.github/workflows/arch-build.yml b/.github/workflows/arch-build.yml
|
|
new file mode 100644
|
|
index 0000000..3f56616
|
|
--- /dev/null
|
|
+++ b/.github/workflows/arch-build.yml
|
|
@@ -0,0 +1,16 @@
|
|
+name: Arch Build
|
|
+on: [push, pull_request]
|
|
+jobs:
|
|
+ Meson-Build:
|
|
+ runs-on: ubuntu-24.04
|
|
+ container:
|
|
+ image: archlinux:latest
|
|
+ steps:
|
|
+ - uses: actions/checkout@v4
|
|
+ - run: pacman --noconfirm -Syy
|
|
+ - run: pacman --noconfirm -S wayland-protocols libdrm libglvnd pkgconf
|
|
+ - run: pacman --noconfirm -S wayland eglexternalplatform
|
|
+ - run: pacman --noconfirm -S meson ninja gcc
|
|
+ - run: meson build
|
|
+ - run: ninja -C build
|
|
+ - run: ninja -C build install
|
|
diff --git a/.github/workflows/autoconf-build.yml b/.github/workflows/autoconf-build.yml
|
|
new file mode 100644
|
|
index 0000000..c52ed92
|
|
--- /dev/null
|
|
+++ b/.github/workflows/autoconf-build.yml
|
|
@@ -0,0 +1,14 @@
|
|
+name: Autotools GCC Build
|
|
+on: [push, pull_request]
|
|
+jobs:
|
|
+ Meson-Build:
|
|
+ runs-on: ubuntu-24.04
|
|
+ steps:
|
|
+ - uses: actions/checkout@v4
|
|
+ - run: sudo apt update
|
|
+ - run: sudo apt install -y wayland-protocols libdrm-dev libegl-dev
|
|
+ - run: sudo apt install -y libwayland-dev libwayland-egl-backend-dev eglexternalplatform-dev
|
|
+ - run: sudo apt install -y meson ninja-build gcc
|
|
+ - run: ./autogen.sh
|
|
+ - run: make
|
|
+ - run: sudo make install
|
|
diff --git a/.github/workflows/meson-build.yml b/.github/workflows/meson-build.yml
|
|
new file mode 100644
|
|
index 0000000..ca070d6
|
|
--- /dev/null
|
|
+++ b/.github/workflows/meson-build.yml
|
|
@@ -0,0 +1,14 @@
|
|
+name: Meson GCC Build
|
|
+on: [push, pull_request]
|
|
+jobs:
|
|
+ Meson-Build:
|
|
+ runs-on: ubuntu-24.04
|
|
+ steps:
|
|
+ - uses: actions/checkout@v4
|
|
+ - run: sudo apt update
|
|
+ - run: sudo apt install -y wayland-protocols libdrm-dev libegl-dev
|
|
+ - run: sudo apt install -y libwayland-dev libwayland-egl-backend-dev eglexternalplatform-dev
|
|
+ - run: sudo apt install -y meson ninja-build gcc
|
|
+ - run: meson build
|
|
+ - run: ninja -C build
|
|
+ - run: sudo ninja -C build install
|
|
diff --git a/.github/workflows/meson-llvm-build.yml b/.github/workflows/meson-llvm-build.yml
|
|
new file mode 100644
|
|
index 0000000..83a8dbe
|
|
--- /dev/null
|
|
+++ b/.github/workflows/meson-llvm-build.yml
|
|
@@ -0,0 +1,17 @@
|
|
+name: Meson LLVM Build
|
|
+on: [push, pull_request]
|
|
+jobs:
|
|
+ Meson-Build:
|
|
+ runs-on: ubuntu-24.04
|
|
+ steps:
|
|
+ - uses: actions/checkout@v4
|
|
+ - run: sudo apt update
|
|
+ - run: sudo apt install -y wayland-protocols libdrm-dev libegl-dev
|
|
+ - run: sudo apt install -y libwayland-dev libwayland-egl-backend-dev eglexternalplatform-dev
|
|
+ - run: sudo apt install -y meson ninja-build clang
|
|
+ - name: meson build
|
|
+ run: meson build
|
|
+ env:
|
|
+ CC: clang
|
|
+ - run: ninja -C build
|
|
+ - run: sudo ninja -C build install
|
|
--
|
|
2.43.0
|
|
|