Skip to content

[doc]: add kotlin tutorial example #422

[doc]: add kotlin tutorial example

[doc]: add kotlin tutorial example #422

Workflow file for this run

name: Iroha2-java pull requests workflow
on:
pull_request:
branches: [ iroha2-dev, iroha2-main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 16
uses: actions/setup-java@v3
with:
java-version: '16'
distribution: 'liberica'
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle
run: ./gradlew build --info
- name: Upload build reports
if: failure()
uses: actions/upload-artifact@v3
with:
name: build-reports
path: /home/runner/work/iroha-java/iroha-java/**/index.html
- name: Cleanup Gradle Cache
# Remove some files from the Gradle cache, so they aren't cached by GitHub Actions.
# Restoring these files from a GitHub Actions cache might cause problems for future builds.
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties