Skip to content

Commit

Permalink
Merge pull request #1 from kairusds-testing/javadoc
Browse files Browse the repository at this point in the history
Add Create Javadoc workflow
  • Loading branch information
kairusds authored Aug 10, 2023
2 parents 4206f3e + 7ee1eab commit 5ec6f35
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/create_javadoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Create Javadoc

on: workflow_dispatch

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Clone libvlcjni
run: git clone https://code.videolan.org/videolan/libvlcjni

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 17

- name: Grant execute permission for build scripts
run: find . -name "*.sh" -exec chmod +x {} \;

- name: Build
run: ./libvlcjni/buildsystem/compile.sh -l -r -a arm64

- run: tree -afih libvlcjni

0 comments on commit 5ec6f35

Please sign in to comment.