From f6b83017e1c5bddbc2a6aeaca165e746aaf8f8e6 Mon Sep 17 00:00:00 2001 From: Robert Newson Date: Sat, 25 Nov 2023 00:31:32 +0000 Subject: [PATCH] first attempt at building nouveau in github actions --- .github/workflows/nouveau.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/nouveau.yml diff --git a/.github/workflows/nouveau.yml b/.github/workflows/nouveau.yml new file mode 100644 index 00000000000..4f868592fe2 --- /dev/null +++ b/.github/workflows/nouveau.yml @@ -0,0 +1,20 @@ +name: Run Gradle on PRs +on: pull_request +jobs: + gradle: + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + java: [ '11', '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