Skip to content

Updated IC2 & TE modules (#3) #10

Updated IC2 & TE modules (#3)

Updated IC2 & TE modules (#3) #10

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Chekout the repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'liberica'
java-version: 8
- name: Gradle cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle
restore-keys: |
${{ runner.os }}-gradle
- name: Build
run: ./gradlew --no-daemon build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Package
path: build/libs