Skip to content

Use BytecodeImplGenerator to enhance the compatibility with different… #59

Use BytecodeImplGenerator to enhance the compatibility with different…

Use BytecodeImplGenerator to enhance the compatibility with different… #59

Workflow file for this run

name: Java CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
java-package: 'jdk'
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build --stacktrace -Dorg.gradle.parallel=true
- name: Get short SHA
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: SimpleWEBP-${{ env.SHORT_SHA }}
path: build/libs