Skip to content

Commit

Permalink
Update CI; add LLVM 17. (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolamarao authored Oct 8, 2023
1 parent 4cb5d0c commit 8b60174
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,44 @@ jobs:
timeout-minutes: 10
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: "Validate Gradle Wrapper"
uses: gradle/wrapper-validation-action@v1
- name: "Set up JDK 17"
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
- name: "Install LLVM 16"
uses: KyleMayes/install-llvm-action@v1.8.3
uses: KyleMayes/install-llvm-action@v1
with:
ubuntu-version: 22.04
version: 16.0.4
- name: "Build with Gradle"
uses: gradle/gradle-build-action@v2.8.0
uses: gradle/gradle-build-action@v2
with:
arguments: build
arguments: build
build-llvm-17:
name: "build with llvm 17"
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Validate Gradle Wrapper"
uses: gradle/wrapper-validation-action@v1
- name: "Set up JDK 17"
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
- name: "Install LLVM 16"
uses: KyleMayes/install-llvm-action@v1
with:
force-version: true
ubuntu-version: 22.04
version: 17.0.2
- name: "Build with Gradle"
uses: gradle/gradle-build-action@v2
with:
arguments: build

0 comments on commit 8b60174

Please sign in to comment.