mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-03 06:00:57 +00:00
Reopen plugin's source code (1.10.8 → 2.0.5)
This commit is contained in:
parent
faf02a5c0a
commit
26a3e07360
231 changed files with 88014 additions and 4271 deletions
32
.github/workflows/build.yml
vendored
32
.github/workflows/build.yml
vendored
|
|
@ -21,6 +21,9 @@ jobs:
|
|||
java-version: '11'
|
||||
distribution: 'temurin'
|
||||
|
||||
- name: Generate Grammar Source
|
||||
run: ./gradlew generateGrammarSource
|
||||
|
||||
- name: Run Tests
|
||||
run: ./gradlew check
|
||||
|
||||
|
|
@ -31,5 +34,32 @@ jobs:
|
|||
name: tests-result
|
||||
path: ${{ github.workspace }}/build/reports/tests
|
||||
|
||||
verify:
|
||||
name: Verify Plugin
|
||||
needs: [ build ]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Maximize Build Space
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
tool-cache: false
|
||||
large-packages: false
|
||||
|
||||
- name: Fetch Sources
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up JDK 11
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: '11'
|
||||
distribution: 'temurin'
|
||||
|
||||
- name: Run Plugin Verification tasks
|
||||
run: ./gradlew runPluginVerifier
|
||||
run: ./gradlew runPluginVerifier
|
||||
|
||||
- name: Collect Plugin Verifier Result
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: pluginVerifier-result
|
||||
path: ${{ github.workspace }}/build/reports/pluginVerifier
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue