Skip to content

Commit

Permalink
first attempt at building nouveau in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rnewson committed Nov 25, 2023
1 parent eb1a588 commit 3d92165
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/nouveau.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Gradle on PRs
on: pull_request
jobs:
gradle:
strategy:
matrix:
os: [ ubuntu-latest ]
java: [ '11', '17', '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

0 comments on commit 3d92165

Please sign in to comment.