mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
GitHub Actions - cover workflow with comments
This commit is contained in:
parent
85d57ca0ff
commit
0dba75da0b
33
.github/workflows/tests.yml
vendored
33
.github/workflows/tests.yml
vendored
@ -1,17 +1,33 @@
|
|||||||
|
# GitHub Actions Workflow created for testing the plugin in three steps:
|
||||||
|
# - test using Gradle tasks, such as tes and verifyPlugin,
|
||||||
|
# - test building process by preparing the artifact using buildPlugin Gradle task,
|
||||||
|
# - run IntelliJ Plugin Verifier.
|
||||||
|
#
|
||||||
|
# Workflow is triggered on push or pull request event.
|
||||||
|
#
|
||||||
|
# Docs:
|
||||||
|
# - GitHub Actions: https://help.github.com/en/actions
|
||||||
|
# - IntelliJ Plugin Verifier GitHub Action: https://github.com/ChrisCarini/intellij-platform-plugin-verifier-action
|
||||||
|
|
||||||
name: Tests
|
name: Tests
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
# Run verifyPlugin and test Gradle tasks.
|
||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
# Check out current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: 1.8
|
java-version: 1.8
|
||||||
|
# Cache Gradle dependencies
|
||||||
- name: Setup Cache
|
- name: Setup Cache
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
@ -19,21 +35,29 @@ jobs:
|
|||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-gradle-
|
${{ runner.os }}-gradle-
|
||||||
|
# Run verifyPlugin Gradle task
|
||||||
- name: Verify Plugin
|
- name: Verify Plugin
|
||||||
run: ./gradlew verifyPlugin --no-daemon
|
run: ./gradlew verifyPlugin --no-daemon
|
||||||
|
# Run test Gradle task
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: ./gradlew test --no-daemon
|
run: ./gradlew test --no-daemon
|
||||||
|
|
||||||
|
# Build plugin with buildPlugin Gradle task and provide artifact for the next workflow jobs.
|
||||||
|
# Requires test job to be passed.
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
needs: test
|
needs: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
# Check out current repository
|
||||||
- name: Fetch Sources
|
- name: Fetch Sources
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
# Setup Java 1.8 environment for the next steps
|
||||||
- name: Setup Java
|
- name: Setup Java
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: 1.8
|
java-version: 1.8
|
||||||
|
# Cache Gradle dependencies
|
||||||
- name: Setup Cache
|
- name: Setup Cache
|
||||||
uses: actions/cache@v1
|
uses: actions/cache@v1
|
||||||
with:
|
with:
|
||||||
@ -41,26 +65,34 @@ jobs:
|
|||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-gradle-
|
${{ runner.os }}-gradle-
|
||||||
|
# Set VERSION and NAME environment variables for the steps reading properties directly from Gradle setup
|
||||||
- name: Export Properties
|
- name: Export Properties
|
||||||
run: |
|
run: |
|
||||||
echo "::set-env name=VERSION::$(./gradlew properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')"
|
echo "::set-env name=VERSION::$(./gradlew properties --no-daemon --console=plain -q | grep "^version:" | awk '{printf $2}')"
|
||||||
echo "::set-env name=NAME::$(./gradlew properties --no-daemon --console=plain -q | grep "^name:" | awk '{printf $2}')"
|
echo "::set-env name=NAME::$(./gradlew properties --no-daemon --console=plain -q | grep "^name:" | awk '{printf $2}')"
|
||||||
|
# Build artifact using buildPlugin Gradle task
|
||||||
- name: Build Plugin
|
- name: Build Plugin
|
||||||
run: ./gradlew buildPlugin --no-daemon
|
run: ./gradlew buildPlugin --no-daemon
|
||||||
|
# Upload plugin artifact to make it available in the next jobs
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: plugin-artifact
|
name: plugin-artifact
|
||||||
path: ./build/distributions/${{ env.NAME }}-${{ env.VERSION }}.zip
|
path: ./build/distributions/${{ env.NAME }}-${{ env.VERSION }}.zip
|
||||||
|
|
||||||
|
# Verify built plugin using IntelliJ Plugin Verifier tool.
|
||||||
|
# Requires build job to be passed.
|
||||||
verify:
|
verify:
|
||||||
name: Verify
|
name: Verify
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
# Download plugin artifact provided by the previous job
|
||||||
- name: Download artifact
|
- name: Download artifact
|
||||||
uses: actions/download-artifact@v1
|
uses: actions/download-artifact@v1
|
||||||
with:
|
with:
|
||||||
name: plugin-artifact
|
name: plugin-artifact
|
||||||
|
# Run IntelliJ Plugin Verifier action using GitHub Action
|
||||||
- name: Verify Plugin
|
- name: Verify Plugin
|
||||||
id: verify
|
id: verify
|
||||||
uses: ChrisCarini/intellij-platform-plugin-verifier-action@v0.0.2
|
uses: ChrisCarini/intellij-platform-plugin-verifier-action@v0.0.2
|
||||||
@ -69,6 +101,7 @@ jobs:
|
|||||||
ide-versions: |
|
ide-versions: |
|
||||||
ideaIC:2020.1
|
ideaIC:2020.1
|
||||||
# ideaIC:LATEST-EAP-SNAPSHOT
|
# ideaIC:LATEST-EAP-SNAPSHOT
|
||||||
|
# Print the output of the verify step
|
||||||
- name: Print Logs
|
- name: Print Logs
|
||||||
run: |
|
run: |
|
||||||
echo "The verifier log file [${{steps.verify.outputs.verification-output-log-filename}}] contents : " ;
|
echo "The verifier log file [${{steps.verify.outputs.verification-output-log-filename}}] contents : " ;
|
||||||
|
Loading…
Reference in New Issue
Block a user