This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a commit to branch nouveau-github-action
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 86d3a3a1b7ce295cf1f8634622e24c4e04cce655
Author: Robert Newson <rnew...@apache.org>
AuthorDate: Sat Nov 25 00:31:32 2023 +0000

    first attempt at building nouveau in github actions
---
 .github/workflows/nouveau.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/.github/workflows/nouveau.yml b/.github/workflows/nouveau.yml
new file mode 100644
index 000000000..5b129c1a9
--- /dev/null
+++ b/.github/workflows/nouveau.yml
@@ -0,0 +1,21 @@
+name: Run Gradle on PRs
+on: pull_request
+jobs:
+  gradle:
+    strategy:
+      fail-fast: false
+      matrix:
+        os: [ ubuntu-latest, macos-latest, windows-latest ]
+        java: [ '11', '17', '19', '20' ]
+    runs-on: ${{ matrix.os }}
+    steps:
+    - uses: actions/checkout@v4
+    - uses: actions/setup-java@v3
+      with:
+        distribution: temurin
+        java-version: ${{ matrix.java }}
+    - name: Run Gradle Builds
+      uses: gradle/gradle-build-action@v2
+      with:
+        arguments: build
+        build-root-directory: nouveau

Reply via email to